Skip to content

Commit

Permalink
CC-2147: add appshare volume
Browse files Browse the repository at this point in the history
  • Loading branch information
SahidKhan89 committed Oct 27, 2023
1 parent 0b21183 commit 8d7c255
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions terraform/environments/ccms-ebs-upgrade/ec2-oracle_ebs_db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -266,12 +266,13 @@ resource "aws_ebs_volume" "appshare" {
lifecycle {
ignore_changes = [kms_key_id]
}
availability_zone = "eu-west-2a"
size = local.application_data.accounts[local.environment].ebs_size_ebsdb_appshare
type = "io2"
iops = 3000
encrypted = true
kms_key_id = data.aws_kms_key.ebs_shared.key_id
availability_zone = "eu-west-2a"
size = local.application_data.accounts[local.environment].ebs_size_ebsdb_appshare
type = "io2"
iops = 3000
multi_attach_enabled = true
encrypted = true
kms_key_id = data.aws_kms_key.ebs_shared.key_id
tags = merge(local.tags,
{ Name = "appshare" }
)
Expand Down

0 comments on commit 8d7c255

Please sign in to comment.