Skip to content

Commit

Permalink
Fix terraform errors merging LZ infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
aloftus23 committed Jan 16, 2025
1 parent bdbe1b9 commit e28f20e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infrastructure/elastic.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "aws_instance" "elk_stack" {
StrStp = ""
}
root_block_device {
volume_size = 15
volume_size = 1000
}

vpc_security_group_ids = [var.is_dmz ? aws_security_group.allow_internal[0].id : aws_security_group.allow_internal_lz[0].id]
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/matomo.tf
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ resource "aws_db_instance" "matomo_db" {
multi_az = true
backup_retention_period = 35
storage_encrypted = true
iam_database_authentication_enabled = true
iam_database_authentication_enabled = false
allow_major_version_upgrade = true
deletion_protection = true
enabled_cloudwatch_logs_exports = ["audit", "error", "general", "slowquery"]
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/stage-cd.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ aws_partition = "aws"
is_dmz = true
project = "Crossfeed"
stage = "staging"
frontend_domain = "staging-cd.crossfeed.cyber.dhs.gov"
frontend_domain = "staging.crossfeed.cyber.dhs.gov"
frontend_lambda_function = "crossfeed-security-headers-staging"
frontend_bucket = "staging.crossfeed.cyber.dhs.gov"
api_domain = "api.staging-cd.crossfeed.cyber.dhs.gov"
Expand Down

0 comments on commit e28f20e

Please sign in to comment.