We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there,
Terraform v0.9.8
provider "kubernetes" { host = "https://localhost" } resource "kubernetes_persistent_volume_claim" "example" { metadata { name = "exampleclaimname" } spec { access_modes = ["ReadWriteMany"] resources { requests { storage = "5Gi" } } volume_name = "p-vol" storage_class_name = "aa" } }
terraform plan 1 error(s) occurred:
storage_class_name should be accepted as documented
Please list the steps required to reproduce the issue, for example:
terraform plan
The text was updated successfully, but these errors were encountered:
This was addressed in #111 which is part of the latest release (1.1.0). Thanks for the report.
1.1.0
Sorry, something went wrong.
This issue is not addressed, and persists in Terraform 0.11.14 with Kubernetes provider version 1.6.2
No branches or pull requests
Hi there,
Terraform Version
Terraform v0.9.8
Affected Resource(s)
Terraform Configuration Files
Debug Output
terraform plan
1 error(s) occurred:
Expected Behavior
storage_class_name should be accepted as documented
Actual Behavior
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform plan
Important Factoids
References
The text was updated successfully, but these errors were encountered: