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
The tag for aws_ebs_volume.test should consistently be "Name=>vol" according to the tags specified in that resource.
Actual Behavior
The "Name" tag switches back and forth between the value supplied by the aws_ebs_volume and the aws_instance.volume_tags.
Steps to Reproduce
After each subsequent terraform plan/apply, then I do aws --region us-west-2 ec2 describe-volumes --volume-ids "$volid" | jq -c '.Volumes[].Tags' using the volume id grabbed from the first run:
Run 1: [{"Value":"test-vol","Key":"Name"}]
Run 2: [{"Value":"test-instance","Key":"Name"}]
Important Factoids
This is so similar to #14107 I almost requested that be reopened, but when I tried to reproduce it in a very simple case without a non-root module, I couldn't. But when I put some components in a module, the problem was evident.
The text was updated successfully, but these errors were encountered:
Hi,
Same problem on 0.9.6. Strange thing is that in one definition file I have created three instances the same way, three times aws_ebs_volume (with tags)/aws_volume_attachement/aws_instance(with volume_tags), and at the end I have problem only with 1/3 instance which constantly wants to change tags between volume_tags and tags (from aws_ebs_volume resource). Not sure if/how/what I can compare between those aws_instances to get some helpful output.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
ghost
locked and limited conversation to collaborators
Mar 31, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Terraform Version
0.9.5
Affected Resource(s)
Please list the resources as a list, for example:
Terraform Configuration Files
Expected Behavior
The tag for
aws_ebs_volume.test
should consistently be "Name=>vol" according to thetags
specified in that resource.Actual Behavior
The "Name" tag switches back and forth between the value supplied by the
aws_ebs_volume
and theaws_instance.volume_tags
.Steps to Reproduce
After each subsequent
terraform plan/apply
, then I doaws --region us-west-2 ec2 describe-volumes --volume-ids "$volid" | jq -c '.Volumes[].Tags'
using the volume id grabbed from the first run:Run 1:
[{"Value":"test-vol","Key":"Name"}]
Run 2:
[{"Value":"test-instance","Key":"Name"}]
Important Factoids
This is so similar to #14107 I almost requested that be reopened, but when I tried to reproduce it in a very simple case without a non-root module, I couldn't. But when I put some components in a module, the problem was evident.
The text was updated successfully, but these errors were encountered: