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

Build definition allow access in .tfstate inconsistent with TF configuration #153

Closed
xuzhang3 opened this issue Aug 14, 2020 · 0 comments
Closed
Assignees
Labels

Comments

@xuzhang3
Copy link
Collaborator

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Terraform (and Azure DevOps Provider) Version

Affected Resource(s)

  • azuredevops_variable_group

Terraform Configuration Files

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"
  }
}

Debug Output

Panic Output

Expected Behavior

allow_access in .tfstate should have the same value in .tf configure

Actual Behavior

Steps to Reproduce

  1. terraform apply
  2. change allow_access to false
  3. terraform apply

Important Factoids

References

image
image

  • #0000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant