diff --git a/CHANGELOG.md b/CHANGELOG.md index dc921c507de..ae4feb3fc36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ FEATURES: ENHANCEMENTS: BUG FIXES: -* compute: `google_project_iam` When importing resources `project` no longer needs to be set in the config post import [3777] +* compute: `google_project_iam` When importing resources `project` no longer needs to be set in the config post import [GH-3777] +* compute: `google_sql_user` User's can now be updated to change their password [GH-3785] ## 2.8.0 (June 04, 2019) diff --git a/google/resource_container_cluster.go b/google/resource_container_cluster.go index c90abd15a62..2d1f2a5b97b 100644 --- a/google/resource_container_cluster.go +++ b/google/resource_container_cluster.go @@ -626,6 +626,13 @@ func resourceContainerCluster() *schema.Resource { Optional: true, Elem: &schema.Schema{Type: schema.TypeString}, }, + + "enable_intranode_visibility": { + Removed: "This field is in beta. Use it in the the google-beta provider instead. See https://terraform.io/docs/providers/google/provider_versions.html for more details.", + Type: schema.TypeBool, + Default: false, + Optional: true, + }, }, } } diff --git a/website/docs/r/container_cluster.html.markdown b/website/docs/r/container_cluster.html.markdown index 8873c1e289c..612ed1455da 100644 --- a/website/docs/r/container_cluster.html.markdown +++ b/website/docs/r/container_cluster.html.markdown @@ -287,9 +287,13 @@ to the datasource. A `region` can have a different set of supported versions tha * `subnetwork` - (Optional) The name or self_link of the Google Compute Engine subnetwork in which the cluster's instances are launched. -* `vertical_pod_autoscaling` - Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it. +* `vertical_pod_autoscaling` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) + Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it. Structure is documented below. +* `enable_intranode_visibility` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) + Whether Intra-node visibility is enabled for this cluster. This makes same node pod to pod traffic visible for VPC network. + The `addons_config` block supports: * `horizontal_pod_autoscaling` - (Optional) The status of the Horizontal Pod Autoscaling