You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no public_access_enabled argument for databricks_mws_private_access_settings resource. This is a pretty important component for the PrivateLink setup (one of the most important ones).
Following setup won't work:
resource"databricks_mws_private_access_settings""pas" {
provider=databricks.mwsaccount_id=var.databricks_account_idprivate_access_settings_name="Private Access Settings for ${aws_vpc.main.id}"region=local.regionpublic_access_enabled=true
}
Error log with TF_LOG=DEBUG terraform apply -auto-approve -var-file=.tfvars:
2021-04-10T22:38:07.050+0200 [INFO] plugin.terraform-provider-aws_v3.36.0_x5: 2021/04/10 22:38:07 [WARN] Truncating attribute path of 0 diagnostics for TypeSet: timestamp=2021-04-10T22:38:07.050+0200
2021-04-10T22:38:07.054+0200 [INFO] plugin.terraform-provider-aws_v3.36.0_x5: 2021/04/10 22:38:07 [WARN] Truncating attribute path of 0 diagnostics for TypeSet: timestamp=2021-04-10T22:38:07.054+0200
2021-04-10T22:38:07.054+0200 [INFO] plugin.terraform-provider-aws_v3.36.0_x5: 2021/04/10 22:38:07 [WARN] Truncating attribute path of 0 diagnostics for TypeSet: timestamp=2021-04-10T22:38:07.054+0200
2021-04-10T22:38:07.056+0200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-10T22:38:07.060+0200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.36.0/darwin_amd64/terraform-provider-aws_v3.36.0_x5 pid=8275
2021-04-10T22:38:07.060+0200 [DEBUG] plugin: plugin exited
Error: Unsupported argument
on main.tf line 332, in resource "databricks_mws_private_access_settings" "pas":
332: public_access_enabled = true
An argument named "public_access_enabled" is not expected here.
2021-04-10T22:38:07.065+0200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-10T22:38:07.066+0200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/databrickslabs/databricks/0.3.2/darwin_amd64/terraform-provider-databricks_v0.3.2 pid=8274
2021-04-10T22:38:07.066+0200 [DEBUG] plugin: plugin exited
The text was updated successfully, but these errors were encountered:
Hi there,
There is no
public_access_enabled
argument fordatabricks_mws_private_access_settings
resource. This is a pretty important component for the PrivateLink setup (one of the most important ones).Following setup won't work:
Error log with
TF_LOG=DEBUG terraform apply -auto-approve -var-file=.tfvars
:The text was updated successfully, but these errors were encountered: