Update docs and fix computed container settings

This commit is contained in:
Evan Brown 2016-04-14 16:30:39 -07:00
parent 0653c5272c
commit 421c1f6e9b

View File

@ -154,7 +154,6 @@ func resourceContainerCluster() *schema.Resource {
"addons_config": &schema.Schema{
Type: schema.TypeList,
Optional: true,
Computed: true,
ForceNew: true,
MaxItems: 1,
Elem: &schema.Resource{
@ -162,7 +161,6 @@ func resourceContainerCluster() *schema.Resource {
"http_load_balancing": &schema.Schema{
Type: schema.TypeList,
Optional: true,
Computed: true,
ForceNew: true,
MaxItems: 1,
Elem: &schema.Resource{
@ -170,7 +168,6 @@ func resourceContainerCluster() *schema.Resource {
"disabled": &schema.Schema{
Type: schema.TypeBool,
Optional: true,
Computed: true,
ForceNew: true,
},
},
@ -179,7 +176,6 @@ func resourceContainerCluster() *schema.Resource {
"horizontal_pod_autoscaling": &schema.Schema{
Type: schema.TypeList,
Optional: true,
Computed: true,
ForceNew: true,
MaxItems: 1,
Elem: &schema.Resource{
@ -187,7 +183,6 @@ func resourceContainerCluster() *schema.Resource {
"disabled": &schema.Schema{
Type: schema.TypeBool,
Optional: true,
Computed: true,
ForceNew: true,
},
},