-
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.
- Loading branch information
Showing
10 changed files
with
52 additions
and
8 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
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 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 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 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 |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| # lab/development/us-gov-east-1/region.hcl | ||
|
|
||
| # Set common variables for the region. This is automatically pulled in in the root terragrunt.hcl configuration to | ||
| # configure the remote state bucket and pass forward to the child modules as inputs. | ||
| locals { | ||
| aws_region = "us-gov-east-1" | ||
| } | ||
| } |
2 changes: 2 additions & 0 deletions
2
lab/development/us-gov-east-1/vpc/platform-eng-eks-mcm/cluster.hcl
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 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 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 |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| # lab/development/us-gov-east-1/vpc/vpc.hcl | ||
|
|
||
| # Set VPC specific variables. These are automatically pulled in to configure the remote state bucket in the root | ||
| # terragrunt.hcl configuration. | ||
| locals { | ||
| vpc_name = "vpc3-lab-dev" | ||
| vpc_domain_name = "dev.lab.csp2.census.gov" | ||
| } | ||
| } |
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 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,29 @@ | ||
| locals { | ||
| account_name = "lab-dev-ew" | ||
| aws_account_id = "224384469011" | ||
| aws_profile = "224384469011-lab-dev-gov" | ||
| aws_region = "us-gov-east-1" | ||
| cluster_endpoint_public_access = true | ||
| cluster_name = "platform-eng-eks-mcm" | ||
| creator = "matthew.c.morgan@census.gov" | ||
| eks_instance_disk_size = 100 | ||
| eks_ng_desired_size = 2 | ||
| eks_ng_max_size = 10 | ||
| eks_ng_min_size = 0 | ||
| enable_cluster_creator_admin_permissions = true | ||
| environment = "development" | ||
| environment_abbr = "dev" | ||
| terraform = true | ||
| terragrunt = true | ||
| vpc_domain_name = "dev.lab.csp2.census.gov" | ||
| vpc_name = "vpc3-lab-dev" | ||
| tags = { | ||
| "slim:schedule" = "8:00-17:00" | ||
| "cluster:size" = "min:${local.eks_ng_min_size}-max:${local.eks_ng_max_size}-desired:${local.eks_ng_desired_size}" | ||
| } | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| } |