Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Curless committed Aug 24, 2018
1 parent 6b126fc commit f98d40b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
40 changes: 20 additions & 20 deletions azurerm/data_source_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func dataSourceArmKubernetesCluster() *schema.Resource {

"enable_rbac": {
Type: schema.TypeBool,
Computed: true,
},
Computed: true,
},

"node_resource_group": {
Type: schema.TypeString,
Expand Down Expand Up @@ -177,33 +177,33 @@ func dataSourceArmKubernetesCluster() *schema.Resource {
},

"aad_profile": {
Type: schema.TypeList,
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"server_app_id": {
Type: schema.TypeString,
Computed: true,
},
"server_app_secret": {
"server_app_id": {
Type: schema.TypeString,
Computed: true,
},

"server_app_secret": {
Type: schema.TypeString,
Computed: true,
Sensitive: true,
},
"client_app_id": {
Type: schema.TypeString,

"client_app_id": {
Type: schema.TypeString,
Computed: true,
},
"tenant_id": {
Type: schema.TypeString,

"tenant_id": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
},
},
},
},

"network_profile": {
Type: schema.TypeList,
Expand All @@ -214,7 +214,7 @@ func dataSourceArmKubernetesCluster() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},

"service_cidr": {
Type: schema.TypeString,
Computed: true,
Expand Down
14 changes: 7 additions & 7 deletions azurerm/resource_arm_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ func resourceArmKubernetesCluster() *schema.Resource {
Optional: true,
ForceNew: true,
Default: true,
},
},

"node_resource_group": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -292,12 +292,12 @@ func resourceArmKubernetesCluster() *schema.Resource {
"tenant_id": {
Type: schema.TypeString,
Required: true,
},
},
},
},
},
},
},
},

"network_profile": {
"network_profile": {
Type: schema.TypeList,
Optional: true,
Computed: true,
Expand Down

0 comments on commit f98d40b

Please sign in to comment.