Skip to content

Commit

Permalink
azurerm_kubernetes_cluster: config_raw is now sensitive (#1225)
Browse files Browse the repository at this point in the history
* azurerm_kubernetes_cluster: config_raw is now sensitive

* azurerm_kubernetes_cluster: datasource config_raw is now sensitive
  • Loading branch information
katbyte authored and tombuildsstuff committed May 10, 2018
1 parent 64bdc1a commit 5c25ccf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions azurerm/data_source_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ func dataSourceArmKubernetesCluster() *schema.Resource {
},

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

"linux_profile": {
Expand Down
5 changes: 3 additions & 2 deletions azurerm/resource_arm_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ func resourceArmKubernetesCluster() *schema.Resource {
},

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

"linux_profile": {
Expand Down

0 comments on commit 5c25ccf

Please sign in to comment.