Skip to content

Commit

Permalink
🔧 23/10/24 - Patching (#8434)
Browse files Browse the repository at this point in the history
* :pin: 23/10/24 - Patching

* 🔧 Hardcode AMI in Datasync
  • Loading branch information
Gary-H9 authored Oct 23, 2024
1 parent d62d239 commit 6e5fb9a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ module "datasync_instance" {
source = "terraform-aws-modules/ec2-instance/aws"
version = "5.7.0"

name = "${local.application_name}-${local.environment}-datasync"
ami = data.aws_ssm_parameter.datasync_ami.value
name = "${local.application_name}-${local.environment}-datasync"
# ami = data.aws_ssm_parameter.datasync_ami.value
ami = "ami-037ee8c0ba1cbd1f6" # TODO: Remove hardcoded AMI
instance_type = "m5.2xlarge"
subnet_id = element(module.connected_vpc.private_subnets, 0)
vpc_security_group_ids = [module.datasync_instance_security_group.security_group_id]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ locals {
observability_platform = "development"

/* Image Versions */
scan_image_version = "0.0.10"
transfer_image_version = "0.0.15"
notify_image_version = "0.0.16"
scan_image_version = "0.1.2"
transfer_image_version = "0.0.17"
notify_image_version = "0.0.18"

/* Target Buckets */
target_buckets = ["mojap-land-dev"]
Expand Down Expand Up @@ -55,9 +55,9 @@ locals {
observability_platform = "production"

/* Image Versions */
scan_image_version = "0.0.10"
transfer_image_version = "0.0.15"
notify_image_version = "0.0.16"
scan_image_version = "0.1.2"
transfer_image_version = "0.0.17"
notify_image_version = "0.0.18"

/* Target Buckets */
target_buckets = ["mojap-land"]
Expand Down

0 comments on commit 6e5fb9a

Please sign in to comment.