Skip to content

Commit

Permalink
CC-2147: Added Conc Tier Instance and SG
Browse files Browse the repository at this point in the history
  • Loading branch information
SahidKhan89 committed Oct 30, 2023
1 parent a23c89c commit de03882
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions terraform/environments/ccms-ebs-upgrade/ec2-oracle_ebs_db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ resource "aws_ebs_volume" "db_home" {
availability_zone = "eu-west-2a"
size = local.application_data.accounts[local.environment].ebs_size_ebsdb_home
type = "io2"
iops = local.application_data.accounts[local.environment].ebs_default_iops
iops = 3000
encrypted = true
kms_key_id = data.aws_kms_key.ebs_shared.key_id
tags = merge(local.tags,
Expand All @@ -295,7 +295,7 @@ resource "aws_ebs_volume" "db_temp" {
availability_zone = "eu-west-2a"
size = local.application_data.accounts[local.environment].ebs_size_ebsdb_temp
type = "io2"
iops = local.application_data.accounts[local.environment].ebs_default_iops
iops = 3000
encrypted = true
kms_key_id = data.aws_kms_key.ebs_shared.key_id
tags = merge(local.tags,
Expand Down
2 changes: 1 addition & 1 deletion terraform/environments/ccms-ebs-upgrade/r53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ resource "aws_route53_record" "ebsconc" {
name = "ccms-ebs-conc-upgrade.${var.networking[0].business-unit}-${local.environment}.modernisation-platform.service.justice.gov.uk"
type = "A"
ttl = 300
records = [aws_instance.ec2_oracle_ebs.private_ip]
records = [aws_instance.ec2_oracle_conc.private_ip]
}

0 comments on commit de03882

Please sign in to comment.