Skip to content

Commit 0c4a5dd

Browse files
authored
Merge pull request #1733 from rtoma/master_auth_networks_20
Increase max number of master_authorized_networks to 20, per GKE docs.
2 parents 064ec03 + 90eabde commit 0c4a5dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

google/resource_container_cluster.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var (
2424
Type: schema.TypeSet,
2525
Optional: true,
2626
Computed: true,
27-
MaxItems: 10,
27+
MaxItems: 20,
2828
Elem: cidrBlockConfig,
2929
},
3030
},

website/docs/r/container_cluster.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ This block also contains several computed attributes, documented below. If this
258258

259259
The `master_authorized_networks_config` block supports:
260260

261-
* `cidr_blocks` - (Optional) Defines up to 10 external networks that can access
261+
* `cidr_blocks` - (Optional) Defines up to 20 external networks that can access
262262
Kubernetes master through HTTPS.
263263

264264
The `master_authorized_networks_config.cidr_blocks` block supports:

0 commit comments

Comments
 (0)