Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding documentation strings for the config_context fields #1523

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions helm-framework/helm/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,16 +256,15 @@ func kubernetesResourceSchema() map[string]schema.Attribute {
},
"config_context": schema.StringAttribute{
Optional: true,
Description: "Context to use for Kubernetes config.",
Description: "Context to choose from the config file. Can be sourced from KUBE_CTX.",
},
"config_context_auth_info": schema.StringAttribute{
Optional: true,
// TODO REFERENCE THE DEFAULT DOCUMENTATI
Description: "AuthInfo to use for Kubernetes config context.",
Optional: true,
Description: "Authentication info context of the kube config (name of the kubeconfig user, --user flag in kubectl). Can be sourced from KUBE_CTX_AUTH_INFO.",
},
"config_context_cluster": schema.StringAttribute{
Optional: true,
Description: "Cluster to use for Kubernetes config context.",
Description: "Cluster context of the kube config (name of the kubeconfig cluster, --cluster flag in kubectl). Can be sourced from KUBE_CTX_CLUSTER.",
},
"token": schema.StringAttribute{
Optional: true,
Expand Down
Loading