-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
aws_launch_configuration Resource is Marked as Supporting Tags #107
Comments
Is it possible to share |
Here you go. One question that comes to mind is are aws_launch_configuration resources still valid in 0.12+? Should it be aws_launch_template? |
Thanks! It looks like the problem is there due to resource mounting. Will create a fix asap. |
What is resource mounting? |
This is a feature of E.g. ; resource "aws_security_group" "my_security_group" {
name = "some-sg"
...
}
resource "aws_security_group_rule" "my_security_rule_1" {
type = "ingress"
from_port = 443
to_port = 443
protocol = "tcp"
...
...
security_group_id = "${aws_security_group.security_group.id}"
} Where Specifically, the bug in your scenario was, Now it is fixed with |
Tested with 1.0.8. it looks good. It is no longer failing for missing aws_launch_configuration tags. Thanks. |
Thanks for re-testing. Closing the issue. |
I have an autoscaling group with and aws_launch_configuration. When I run the test it fails stating the following:
When I add tags to the aws_launch_configuration resource in terraform and try to . build the plan it gives an error:
It doesn't look like aws_launch_configuration resources supports tags.
The text was updated successfully, but these errors were encountered: