-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
feat: Support default_tags in aws_autoscaling_group #1973
Conversation
This pulls just the autoscaling_group changes out of #1968 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
awesome, thank you for the PR! we'll probably make this the default on the next major release but for now its great as is - @antonbabenko 👍🏽
## [18.16.0](v18.15.0...v18.16.0) (2022-03-29) ### Features * Support default_tags in aws_autoscaling_group ([#1973](#1973)) ([7a9458a](7a9458a))
This PR is included in version 18.16.0 🎉 |
## [18.16.0](terraform-aws-modules/terraform-aws-eks@v18.15.0...v18.16.0) (2022-03-29) ### Features * Support default_tags in aws_autoscaling_group ([terraform-aws-modules#1973](terraform-aws-modules#1973)) ([7a9458a](terraform-aws-modules@7a9458a))
## [18.16.0](terraform-aws-modules/terraform-aws-eks@v18.15.0...v18.16.0) (2022-03-29) ### Features * Support default_tags in aws_autoscaling_group ([terraform-aws-modules#1973](terraform-aws-modules#1973)) ([7a9458a](terraform-aws-modules@7a9458a))
## [18.16.0](terraform-aws-modules/terraform-aws-eks@v18.15.0...v18.16.0) (2022-03-29) ### Features * Support default_tags in aws_autoscaling_group ([#1973](terraform-aws-modules/terraform-aws-eks#1973)) ([ac7fb3c](terraform-aws-modules/terraform-aws-eks@ac7fb3c))
I'm going to lock this pull request 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 related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
use_default_tags
to EKS self managed node group module definition. When set totrue
, the default tags configured on the provider will be added to the autoscaling_group tags.var.self_managed_node_groups
orvar.self_managed_node_group_defaults
and pass the result to the self managed node group module.Motivation and Context
Fixes #1916
Breaking Changes
No
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request