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
azuredevops_variable_group
data azuredevops_project p{ project_name = "Test Project" } resource "azuredevops_variable_group" "vg" { project_id = data.azuredevops_project.p.id name = "test-project" description = "A sample variable group." allow_access = false variable { name = "key1" secret_value = "value1" is_secret = true } variable { name = "key2" value = "value2" } variable { name = "key3" } }
allow_access in .tfstate should have the same value in .tf configure
allow_access
.tfstate
.tf
terraform apply
false
The text was updated successfully, but these errors were encountered:
xuzhang3
No branches or pull requests
Community Note
Terraform (and Azure DevOps Provider) Version
Affected Resource(s)
azuredevops_variable_group
Terraform Configuration Files
Debug Output
Panic Output
Expected Behavior
allow_access
in.tfstate
should have the same value in.tf
configureActual Behavior
Steps to Reproduce
terraform apply
allow_access
tofalse
terraform apply
Important Factoids
References
The text was updated successfully, but these errors were encountered: