consul-terraform-sync icon indicating copy to clipboard operation
consul-terraform-sync copied to clipboard

Remove deprecated workspace_prefix in v0.8.0

Open findkim opened this issue 3 years ago • 0 comments

Consul docs for deprecation notice https://github.com/hashicorp/consul/pull/11836 Initial bug ticket https://github.com/hashicorp/consul-terraform-sync/issues/442

Remove

driver "terraform-cloud" {
  workspace_prefix = "my-prefix-"
}

The new option

driver "terraform-cloud" {
  workspaces {
    prefix = "my-prefix-"
  }
}

findkim avatar Jan 31 '22 21:01 findkim