Integration Action "extra_properties" argument is not expected here #152
Closed
Description
Terraform Version
$ terraform -v
Terraform v0.12.26
+ provider.aws v2.69.0
+ provider.opsgenie v0.4.1
+ provider.template v2.1.2
Affected Resource(s)
- opsgenie_integration_action
Terraform Configuration Files
resource "opsgenie_integration_action" "nagios" {
...
create {
name = "Create Service Alert"
...
extra_properties = map(
"Environment", "{{_payload.Environment}}",
"Region", "{{_payload.AwsRegion}}"
)
...
}
...
}
Debug Output
Error: Unsupported argument
on nagios.tf line 44, in resource "opsgenie_integration_action" "nagios":
44: extra_properties = map(
An argument named "extra_properties" is not expected here.
Panic Output
If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the crash.log
.
Expected Behavior
What should have happened?
Actual Behavior
What actually happened?
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform init
terraform validate
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:
- GH-1234