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
0.6.37
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
resource "opsgenie_api_integration" "test" { name = "EC2_AutoScalingTest" type = "AmazonEc2AutoScaling" enabled = true suppress_notifications = false allow_write_access = true allow_configuration_access = true owner_team_id = var.team_id }
~ resource "opsgenie_api_integration" "test" { ~ allow_configuration_access = false -> true id = "REDACTED" name = "EC2_AutoScalingTest" # (6 unchanged attributes hidden) }
Should update configuration for integration, and remove configuration access. When requesting integration info, should return following field in JSON:
"allowConfigurationAccess": false,
Configuration is not changed. API request for integration info returns same output as before apply:
"allowConfigurationAccess": true,
Please list the steps required to reproduce the issue, for example:
terraform apply
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:
No branches or pull requests
Provider version
0.6.37
Affected Resource(s)
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Terraform Configuration Files
Terraform Plan Output
Expected Behavior
Should update configuration for integration, and remove configuration access.
When requesting integration info, should return following field in JSON:
Actual Behavior
Configuration is not changed.
API request for integration info returns same output as before apply:
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform apply
with allow_configuration_access set to falseterraform apply
with allow_configuration_access set to trueReferences
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: