-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename sg_ports.tf and clean up duplicate rules (#42)
- Rename sg_ports.tf to additional_sg_rules.tf - Clean up duplicate rules - Add a comment --------- Co-authored-by: Matthew Creal Morgan <matthew.c.morgan@census.gov>
- Loading branch information
Showing
3 changed files
with
24 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| locals { | ||
| node_security_group_additional_rules = { | ||
| ingress_nodes_ephemeral = { | ||
| description = "Node to node ingress on ephemeral ports" | ||
| from_port = 80 | ||
| protocol = "tcp" | ||
| self = true | ||
| to_port = 65535 | ||
| type = "ingress" | ||
| } | ||
| # ALB controller, NGINX | ||
| ingress_cluster_9443_webhook = { | ||
| description = "Cluster API to node 9443/tcp webhook" | ||
| from_port = 9443 | ||
| protocol = "tcp" | ||
| source_cluster_security_group = true | ||
| to_port = 9443 | ||
| type = "ingress" | ||
| } | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.