Skip to content

Commit

Permalink
Merge pull request #976 from cabinetoffice/DP-870-uuid-ppon-service-flag
Browse files Browse the repository at this point in the history
DP-870 UUID PPON Service Flag
  • Loading branch information
jakzal authored Nov 25, 2024
2 parents 5ae35b3 + 830e154 commit e28ce0f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Services/CO.CDP.EntityVerification/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
},
"Features": {
"SwaggerUI": false,
"UuidPponService": true
"UuidPponService": false
}
}
9 changes: 5 additions & 4 deletions terragrunt/modules/ecs/service-entity-verification.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,22 @@ module "ecs_service_entity_verification" {
aspcore_environment = local.aspcore_environment
container_port = var.service_configs.entity_verification.port
cpu = var.service_configs.entity_verification.cpu
ev_db_address = var.db_entity_verification_address
ev_db_name = var.db_entity_verification_name
ev_db_password = "${var.db_entity_verification_credentials_arn}:username::"
ev_db_username = "${var.db_entity_verification_credentials_arn}:password::"
host_port = var.service_configs.entity_verification.port
image = local.ecr_urls[var.service_configs.entity_verification.name]
lg_name = aws_cloudwatch_log_group.tasks[var.service_configs.entity_verification.name].name
lg_prefix = "app"
lg_region = data.aws_region.current.name
memory = var.service_configs.entity_verification.memory
name = var.service_configs.entity_verification.name
ev_db_address = var.db_entity_verification_address
ev_db_name = var.db_entity_verification_name
ev_db_password = "${var.db_entity_verification_credentials_arn}:username::"
ev_db_username = "${var.db_entity_verification_credentials_arn}:password::"
public_domain = var.public_domain
queue_entity_verification_queue_url = var.queue_entity_verification_queue_url
queue_organisation_queue_url = var.queue_organisation_queue_url
service_version = local.service_version
uuid_ppon_service_enable = false
vpc_cidr = var.vpc_cider
}
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
{"name": "EntityVerificationDatabase__Database", "value": "${ev_db_name}"},
{"name": "EntityVerificationDatabase__Host", "value": "${ev_db_address}"},
{"name": "EntityVerificationDatabase__Server", "value": "${ev_db_address}"},
{"name": "Features__UuidPponService", "value": "${uuid_ppon_service_enable}"},
{"name": "ForwardedHeaders__KnownNetwork", "value": "${vpc_cidr}"},
{"name": "Organisation__Authority", "value": "https://authority.${public_domain}"}
],
Expand Down

0 comments on commit e28ce0f

Please sign in to comment.