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
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
The resources and data sources in this provider are generated from the CloudFormation schema, so they can only support the actions that the underlying schema supports. For this reason submitted bugs should be limited to defects in the generation and runtime code of the provider. Customizing behavior of the resource, or noting a gap in behavior are not valid bugs and should be submitted as enhancements to AWS via the CloudFormation Open Coverage Roadmap.
Terraform CLI and Terraform AWS Cloud Control Provider Version
Terraform v1.6.2
Installed hashicorp/awscc v1.7.0 (signed by HashiCorp)
Affected Resource(s)
awscc_iotwireless_wireless_gateway
Terraform Configuration Files
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
# Copy-paste your Terraform configurations here - for large Terraform configs,# please use a service like Dropbox and share a link to the ZIP file. For# security, you can also encrypt the files using our GPG public key: https://keybase.io/hashicorp# read configlocals {
gateways=csvdecode(file("./iot_wireless_gateways/gateways.csv"))
gw_map=tomap({ forgwinlocal.gateways:gw.gateway_eui=>gw})
}
# create wireless gatewaysresource"awscc_iotwireless_wireless_gateway""gateway" {
for_each=local.gw_maplo_ra_wan={
gateway_eui = each.value.gateway_eui
rf_region = each.value.rf_region
}
name=each.value.gateway_namedescription=each.value.descriptiontags=var.awscc_tags
}
variable"awscc_tags" {
description="AWS resource tags for AWSCC provider"type=set(object({
key =string
value =string
}))
}
Note: awscc_tags are read in from a yaml file. The awscc_tags are:
Terraform detects that environment and addedBy key values have changed and updates these. The updated values are seen in the AWS console. (Note: This is the behaviour happening for aws provider resources, such as aws_iam_policy.)
Actual Behavior
Terraform detects that environment and addedBy key values have changed. The Terraform plan output indicates the same and the Terraform apply output indicates that the update has been done. But looking at the resource in the console, the tag values have not been updated (even after several minutes/hours).
Community Note
Terraform CLI and Terraform AWS Cloud Control Provider Version
Affected Resource(s)
Terraform Configuration Files
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
Note: awscc_tags are read in from a yaml file. The awscc_tags are:
Debug Output
Panic Output
Expected Behavior
Terraform detects that environment and addedBy key values have changed and updates these. The updated values are seen in the AWS console. (Note: This is the behaviour happening for aws provider resources, such as aws_iam_policy.)
Actual Behavior
Terraform detects that environment and addedBy key values have changed. The Terraform plan output indicates the same and the Terraform apply output indicates that the update has been done. But looking at the resource in the console, the tag values have not been updated (even after several minutes/hours).
Steps to Reproduce
terraform apply
Important Factoids
References
The text was updated successfully, but these errors were encountered: