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
After the fix for #183 was merged and released, I found a similar issue when production/enabled is set to true. Like the earlier issue, in this case terragrunt plan always thinks there are changes to be made.
I hope to investigate this soon, perhaps next week.
Terraform Version
Run terraform -v to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed.
v1.5.6
Affected Resource(s)
bitbucket_branching_model
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Terraform Configuration Files
resource"bitbucket_branching_model""branching_model" {
owner=var.repo_ownerrepository=var.repo_namedevelopment {
name=var.branching_model.branching_model.development.nameuse_mainbranch=var.branching_model.branching_model.development.use_mainbranch
}
production {
enabled=var.branching_model.branching_model.production.enabledname=var.branching_model.branching_model.production.nameuse_mainbranch=var.branching_model.branching_model.production.use_mainbranch.# Set to true
}
dynamic"branch_type" {
for_each=var.branching_model.branching_model.branch_typescontent {
kind=branch_type.value.kindenabled=branch_type.value.enabledprefix=branch_type.value.prefix
}
}
depends_on=[null_resource.create_branches]
}
After the fix for #183 was merged and released, I found a similar issue when
production/enabled
is set totrue
. Like the earlier issue, in this caseterragrunt plan
always thinks there are changes to be made.I hope to investigate this soon, perhaps next week.
Terraform Version
Run
terraform -v
to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed.v1.5.6
Affected Resource(s)
bitbucket_branching_model
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Terraform Configuration Files
Debug Output
Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
Panic Output
If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the
crash.log
.Expected Behavior
After running
terraform apply
, future runs ofterraform plan
should show no changes to be made.Actual Behavior
Even after
terraform apply
, every subsequent run ofterraform plan
shows the following change to be made:Steps to Reproduce
terraform apply
terraform plan
Important Factoids
Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? Custom version of OpenStack? Tight ACLs?
References
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
The text was updated successfully, but these errors were encountered: