You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
I only expect the value to be updated if it is changed, not on every apply.
Actual Behavior
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# bitbucket_repository_variable.foo will be updated in-place
~ resource "bitbucket_repository_variable" "foo" {
id = "foo"
key = "foo"
repository = "baz/buzz"
secured = true
uuid = "{7948f751-9ab7-4b24-ab33-d80fbd99f9f5}"
+ value = "bar"
}
Plan: 0 to add, 1 to change, 0 to destroy.
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform apply
terraform plan
Current Workaround
Avoid ever resetting the value, (opens the user up to a stale value):
Also running into this issue. Lifecycle rules fix the problem but as @caleb-sixfeetup says, creates a different problem.
The whole point of plan is to see what's going to change - makes no sense when there are dozens of false positives
Terraform Version
Terraform v0.12.24
Affected Resource(s)
when
secured = true
Terraform Configuration Files
Expected Behavior
I only expect the value to be updated if it is changed, not on every apply.
Actual Behavior
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform apply
terraform plan
Current Workaround
Avoid ever resetting the value, (opens the user up to a stale value):
The text was updated successfully, but these errors were encountered: