-
Notifications
You must be signed in to change notification settings - Fork 0
DT-523 add vpc s3 endpoint resource #28
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
Changes from all commits
2080852
39868b9
0d0e540
92142ce
a3e570d
cf5962c
d103d4e
6af60be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -11,4 +11,9 @@ variable "eks_enabled" { | |||||||||||||
variable "single_nat_gateway" { | ||||||||||||||
description = "Controls whether single NAT gateway used for all public subnets" | ||||||||||||||
type = bool | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
variable "region" { | ||||||||||||||
description = "AWS region to provision resources in" | ||||||||||||||
type = string | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] Consider adding a validation block to the
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||||
} |
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.
Hardcoding the partition as
com.amazonaws
may break in GovCloud or China partitions—use thedata.aws_partition
source to build the service name dynamically.Copilot uses AI. Check for mistakes.