What is the correct way to define a RemoteBackend for cdk with Python? I tried the following based on the blog example, but it didn’t work.
from cdktf import App, TerraformStack, TerraformOutput, RemoteBackend
<snip>
stack = MyStack(app, "hello-terraform")
RemoteBackend(stack,
hostname= "app.terraform.io",
organization="test-cdk-org",
workspaces= {"name": 'hello-terraform'}
)