Google Kubernetes Engine 集群$GKE_CLUSTER_NAME
在 Google Cloud Platform (GCP) 项目中运行$GCP_PROJECT_NAME
,其中存储了匹配的 Terraform 配置container_cluster.tf
,可以通过以下方式检查:
terraform plan
#=>
No changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration and found no differences, so no changes are needed.
我希望通过将以下参数添加到以下参数来启用 Config Connector(更多信息在这里)以$GKE_CLUSTER_NAME
使用 Terraform container_cluster.tf
:
resource "google_container_cluster" ". . ." {
addons_config {
config_connector_config {
enabled = true
}
. . .
}
但是当我进行plan
此更改时,我遇到以下错误:
terraform plan
#=>
╷
│ Error: Unsupported block type
│
│ on container_cluster.tf line 3, in resource "google_container_cluster" ". . .":
│ 3: config_connector_config {
│
│ Blocks of type "config_connector_config" are not expected here.
尽管在此处找到的官方文档声明该块config_connector_config
支持。addons_config
我正在使用最新版本的 Terraform 和google
提供程序:
terraform version
#=>
Terraform v1.0.6
on . . .
+ provider registry.terraform.io/hashicorp/google v3.84.0
我需要进行哪些更改才能成功启用 Config Connector 以$GKE_CLUSTER_NAME
使用 Terraform?