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
Terraform v0.12.24
Initial apply
resource "ibm_iam_access_group" "accgrp" { name = "mygroup" } resource "ibm_iam_access_group_policy" "policy" { access_group_id = ibm_iam_access_group.accgrp.id roles = ["Viewer"] }
Updated apply:
resource "ibm_iam_access_group" "accgrp" { name = "mygroup" } resource "ibm_iam_access_group_policy" "policy" { access_group_id = ibm_iam_access_group.accgrp.id roles = ["Viewer"] account_management = true }
The plan shows the change:
Terraform will perform the following actions: # ibm_iam_access_group_policy.policy_base will be updated in-place ~ resource "ibm_iam_access_group_policy" "policy_base" { access_group_id = "AccessGroupId-cccb0318-dbcc-46c5-9804-d106c0cfd81e" ~ account_management = false -> true id = "AccessGroupId-cccb0318-dbcc-46c5-9804-d106c0cfd81e/31417b19-437c-4422-9ed7-59822f1b7e81" roles = [ "Viewer", ] version = "1-03ccb8aee41599e4ed4ee5fb26b78e2a" resources { attributes = {} } } Plan: 0 to add, 1 to change, 0 to destroy.
and expected behavior is that the change actually apply
Terraform showed that there was a change but if you go the access group, no change was made
The text was updated successfully, but these errors were encountered:
Currently we have update support on change of roles or resource attribute..we need to extend it to account_management attribute.
We will plan in upcoming sprints
Sorry, something went wrong.
Fix issue IBM-Cloud#1551
e57a45f
Fix issue #1551
98ac489
closing this issue now we have support with account_management https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/iam_access_group_policy
hkantare
No branches or pull requests
Terraform Version
Terraform v0.12.24
Affected Resource(s)
Terraform Configuration Files
Initial apply
Updated apply:
Expected Behavior
The plan shows the change:
and expected behavior is that the change actually apply
Actual Behavior
Terraform showed that there was a change but if you go the access group, no change was made
Steps to Reproduce
The text was updated successfully, but these errors were encountered: