Skip to content

Commit

Permalink
Merge pull request #2117 from terraform-providers/b/aks-disksize
Browse files Browse the repository at this point in the history
Add default to AKS agent_pool_profile os_disk_size_gb property
  • Loading branch information
katbyte authored Oct 22, 2018
2 parents 4b653e3 + 8d8d2e7 commit bba6272
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions azurerm/resource_arm_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,11 @@ func resourceArmKubernetesCluster() *schema.Resource {
},

"os_disk_size_gb": {
Type: schema.TypeInt,
Optional: true,
ForceNew: true,
Type: schema.TypeInt,
Optional: true,
ForceNew: true,
Computed: true,
ValidateFunc: validation.IntAtLeast(1),
},

"vnet_subnet_id": {
Expand Down

0 comments on commit bba6272

Please sign in to comment.