File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ ```release-note:bug
2
+ gke: fixed the error of Invalid address to set on `config_connector_config` of the data source `google_container_cluster`
3
+ ```
Original file line number Diff line number Diff line change 69
69
"addons_config.0.dns_cache_config" ,
70
70
"addons_config.0.gce_persistent_disk_csi_driver_config" ,
71
71
"addons_config.0.gke_backup_agent_config" ,
72
+ "addons_config.0.config_connector_config" ,
72
73
}
73
74
74
75
privateClusterConfigKeys = []string {
@@ -384,6 +385,22 @@ func resourceContainerCluster() *schema.Resource {
384
385
},
385
386
},
386
387
},
388
+ "config_connector_config" : {
389
+ Type : schema .TypeList ,
390
+ Optional : true ,
391
+ Computed : true ,
392
+ AtLeastOneOf : addonsConfigKeys ,
393
+ MaxItems : 1 ,
394
+ Description : `The of the Config Connector addon.` ,
395
+ Elem : & schema.Resource {
396
+ Schema : map [string ]* schema.Schema {
397
+ "enabled" : {
398
+ Type : schema .TypeBool ,
399
+ Required : true ,
400
+ },
401
+ },
402
+ },
403
+ },
387
404
},
388
405
},
389
406
},
You can’t perform that action at this time.
0 commit comments