-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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: Add support for creating a security group for VPC endpoint(s) #962
feat: Add support for creating a security group for VPC endpoint(s) #962
Conversation
@@ -103,23 +112,6 @@ module "vpc_endpoints" { | |||
policy = data.aws_iam_policy_document.dynamodb_endpoint_policy.json | |||
tags = { Name = "dynamodb-vpc-endpoint" } | |||
}, | |||
ssm = { |
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 don't need all of these - they just make the example take longer and cost more
variable "create_security_group" { | ||
description = "Determines if a security group is created" | ||
type = bool | ||
default = false |
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.
default is false
so we don't surprise users (like I did with the ALB module 🙃)
## [5.1.0](v5.0.0...v5.1.0) (2023-07-15) ### Features * Add support for creating a security group for VPC endpoint(s) ([#962](#962)) ([802d5f1](802d5f1))
This PR is included in version 5.1.0 🎉 |
Hi @bryantbiggs I think that the new feature to create security groups for vpc endpoints is not working.
This is my ouput in the console: ` # module.vpc_endpoints.aws_vpc_endpoint.this["logs"] will be created
Plan: 1 to add, 0 to change, 0 to destroy.` |
your code is incorrect |
Sorry for that, can you explain to me where is the error? |
How have you tried checking/validating your code? |
My apologies, now is working.
|
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
Motivation and Context
Breaking Changes
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request