We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Module version [Required]:
Terraform version: Terraform v1.3.7 on windows_amd64
Provider version(s):
resource "aws_security_group" "ingress_sg" { name_prefix = "ingress" description = "inbound rules" vpc_id = module.vpc.vpc_id ingress { protocol = "tcp" from_port = 8000 to_port = 8000 cidr_blocks = ["0.0.0.0/0"] ipv6_cidr_blocks = ["::/0"] } } module "eks_blueprints" { source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.22.0" cluster_name = local.cluster_name cluster_version = "1.24" vpc_id = module.vpc.vpc_id private_subnet_ids = module.vpc.private_subnets cluster_endpoint_public_access = true managed_node_groups = { node_groups = { node_group_name = "node_group" ami_type = "AL2_ARM_64" capacity_type = "ON_DEMAND" instance_types = [ "c6g.xlarge" ] min_size = 1 max_size = 10 desired_size = 1 subnet_ids = module.vpc.public_subnets vpc_security_group_ids = [ "${aws_security_group.ingress_sg.id}" ] } } }
Steps to reproduce the behavior:
Adding or removing the segment
vpc_security_group_ids = [ "${aws_security_group.ingress_sg.id}" ]
does not trigger any change in the plan, it reports "No changes. Your infrastructure matches the configuration."
External security group is applied to the managed node group.
Security group is successfully created, but is not applied.
The text was updated successfully, but these errors were encountered:
I believe this is related to #328, but I am still keeping it open because this seems like a somewhat trivial addition to managed_ng resource.
managed_ng
Sorry, something went wrong.
Thank you but please see #1421 - we will be removing support for creation of cluster resources soon
Successfully merging a pull request may close this issue.
Description
Versions
Module version [Required]:
Terraform version:
Terraform v1.3.7
on windows_amd64
Provider version(s):
Reproduction Code [Required]
Steps to reproduce the behavior:
Adding or removing the segment
does not trigger any change in the plan, it reports "No changes. Your infrastructure matches the configuration."
Expected behaviour
External security group is applied to the managed node group.
Actual behaviour
Security group is successfully created, but is not applied.
The text was updated successfully, but these errors were encountered: