Skip to content

Commit

Permalink
K8S-11821 make kube_config sensitive (#113)
Browse files Browse the repository at this point in the history
* K8S-11821 make kube_config sensitive

* make oidc_kube_login also sensitive
  • Loading branch information
nrobert13 authored Dec 5, 2024
1 parent d7da245 commit d888030
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions metakube/resource_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,14 @@ func metakubeResourceCluster() *schema.Resource {
Description: "Deletion timestamp",
},
"kube_config": {
Type: schema.TypeString,
Computed: true,
Type: schema.TypeString,
Sensitive: true,
Computed: true,
},
"oidc_kube_config": {
Type: schema.TypeString,
Computed: true,
Type: schema.TypeString,
Sensitive: true,
Computed: true,
},
"kube_login_kube_config": {
Type: schema.TypeString,
Expand Down

0 comments on commit d888030

Please sign in to comment.