-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
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
Support for Terraform 0.12 (fixes #55) #56
Support for Terraform 0.12 (fixes #55) #56
Conversation
92ba88a
to
9975c0b
Compare
9ec1512
to
63f43d5
Compare
I had to update the type constraint for Docs here: |
I have tried this out and get the following error when I don't include an
If I make this change: tags = concat(
[
{
"key" = "Name"
"value" = var.name
"propagate_at_launch" = true
},
- {
- "key" = "EIP"
- "value" = var.eip
- "propagate_at_launch" = true
- },
],
var.extra_tags,
) Then it works. Here's the plan with the missing value: + tags = [
+ {
+ "key" = "Name"
+ "propagate_at_launch" = "true"
+ "value" = "bastion"
},
+ {
+ "key" = "EIP"
+ "propagate_at_launch" = "true"
},
] |
I would like to this merged :) |
@eliasdorneles ping :) , I think with @Gazler modification it should be good ? |
@allan-simon if i do that, then i'll break the behavior documented in the README:
... because the I dunno what's best to do here, tbh. |
v2.0.0 of this module is Terraform 0.12 ready. |
Hello,
I tried upgrading the module to Terraform 0.12, the automated upgrade command
terraform 0.12upgrade
) does a good job.I only had to solve manually one section (which had a comment explaining with the proper context).
I've also added a few lines to README pointing people to use the
v1.10.0
version if they're on Terraform 0.11.Does this look good?