-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
Requested features, general updates #110
Conversation
/test all |
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.
LGTM but minor comment on use of the depends_on
meta-attribute
@@ -162,7 +162,7 @@ module "eks_node_group" { | |||
|
|||
# Ensure ordering of resource creation to eliminate the race conditions when applying the Kubernetes Auth ConfigMap. | |||
# Do not create Node Group before the EKS cluster is created and the `aws-auth` Kubernetes ConfigMap is applied. | |||
depends_on = [module.eks_cluster.kubernetes_config_map_id] | |||
depends_on = [module.eks_cluster, module.eks_cluster.kubernetes_config_map_id] |
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.
I would think depends_on = [module.eks_cluster.kubernetes_config_map_id]
implies depends_on = [module.eks_cluster]
, no?
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.
I would expect that you are right, but I did not want to spend the time to test it, and I ran into problems with the previous version.
from_port = 0 | ||
to_port = 65535 | ||
protocol = "tcp" | ||
description = "Allow SSH egress" |
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.
we do we call it "SSH egress" if all the ports are open?
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.
It is called "SSH egress" because the ports are only open to destinations from which SSH ingress is allowed.
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.
I know this is an old PR, but I'm looking back on this and curious why the ssh egress rule was needed given SecurityGroups are stateful
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.
please see comments
what && why
Combine feature requests, bug fixes, and general updates into a single PR to reduce number of releases and also expedite requested changes to PRs.
ami_type="CUSTOM"
, resolves Allow value CUSTOM for input ami_type for use with Launch Templates #96, thank you @ingledlssh_access_security_group_ids
whether or not an SSH key is provided, resolves Support EC2 Instance Connect Send SSH Key #108, thank you @bcbrockwayenabled=false
, update workflows: general maintenance and conformity