Skip to content

Commit

Permalink
Mark GKE peering_name GA (#5471)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>

Co-authored-by: Riley Karson <[email protected]>
  • Loading branch information
modular-magician and rileykarson committed Jan 22, 2020
1 parent 9d6d2e1 commit 5df50b3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion google/resource_container_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,10 @@ func resourceContainerCluster() *schema.Resource {
ForceNew: true,
ValidateFunc: orEmpty(validation.CIDRNetwork(28, 28)),
},

"peering_name": {
Type: schema.TypeString,
Computed: true,
},
"private_endpoint": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -2101,6 +2104,7 @@ func flattenPrivateClusterConfig(c *containerBeta.PrivateClusterConfig) []map[st
"enable_private_endpoint": c.EnablePrivateEndpoint,
"enable_private_nodes": c.EnablePrivateNodes,
"master_ipv4_cidr_block": c.MasterIpv4CidrBlock,
"peering_name": c.PeeringName,
"private_endpoint": c.PrivateEndpoint,
"public_endpoint": c.PublicEndpoint,
},
Expand Down

0 comments on commit 5df50b3

Please sign in to comment.