|
@@ -13,7 +13,7 @@ locals {
|
|
|
# working directory, into a temporary folder, and execute your Terraform commands in that folder.
|
|
|
terraform {
|
|
|
# Double slash is intentional and required to show root of modules
|
|
|
- source = "git@github.xdr.accenturefederalcyber.com:mdr-engineering/xdr-terraform-modules.git//base/github?ref=v3.0.0"
|
|
|
+ source = "git@github.xdr.accenturefederalcyber.com:mdr-engineering/xdr-terraform-modules.git//base/github?ref=v3.1.1"
|
|
|
}
|
|
|
|
|
|
dependency "vpc" {
|
|
@@ -35,6 +35,17 @@ inputs = {
|
|
|
Terraform = "aws/${basename(get_parent_terragrunt_dir())}/${path_relative_to_include()}/"
|
|
|
Schedule = "none"
|
|
|
}
|
|
|
+ instance_tags = {
|
|
|
+ Reserved = false
|
|
|
+ Reserved_Type = "c5.4xlarge"
|
|
|
+ Reservation_Expiration = "2022-10-15"
|
|
|
+ Reservation_Notes = "Reserved incorrectly on 10/15. Needs 'UNIX/Linux' instead of 'RHEL' reservation."
|
|
|
+ }
|
|
|
+ backup_instance_tags = {
|
|
|
+ Reserved = true
|
|
|
+ Reserved_Type = "t3a.medium"
|
|
|
+ Reservation_Expiration = "2022-10-15"
|
|
|
+ }
|
|
|
instance_type = local.account_vars.locals.instance_types["github"]
|
|
|
backup_instance_type = local.account_vars.locals.instance_types["github-backup"]
|
|
|
instance_count = local.account_vars.locals.github_instance_count
|