-
Notifications
You must be signed in to change notification settings - Fork 68
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
Add FIPS enabled AMI to TF #1871
Conversation
jawadqur
commented
Mar 17, 2022
- Add FIPS enabled AMI to TF
- Add SSM policy to workers iam role
tf_files/aws/modules/eks/cloud.tf
Outdated
# Needed if we need to bring up custom AMI's that have been encrypted using a kms key | ||
resource "aws_iam_service_linked_role" "autoscaling" { | ||
aws_service_name = "autoscaling.amazonaws.com" | ||
custom_suffix = "ASG" |
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.
If there are multiple commons the arn will match for each and lead to tf errors. We should change this to something either random or specific to the common, so that there is not an overlap. Easiest solution is probably ${var.vpc_name}.
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.
You are 100% correct. Thanks for updating the PR! 🙌
…unique per commons