Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion fides-aws-ecs/ecs-privacy-center.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,15 @@ locals {
{
name = "FIDES_PRIVACY_CENTER__IS_OVERLAY_ENABLED"
value = tostring(var.privacy_center_is_overlay_enabled)
}
},
{
name = "FIDES_PRIVACY_CENTER__USE_API_CONFIG"
value = tostring(var.privacy_center_use_api_config)
},
var.privacy_center_root_property_path != null ? {
name = "FIDES_PRIVACY_CENTER__ROOT_PROPERTY_PATH"
value = var.privacy_center_root_property_path
} : null
]
logConfiguration = {
logDriver = "awslogs",
Expand Down
13 changes: 13 additions & 0 deletions fides-aws-ecs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,19 @@ variable "privacy_center_allow_html_description" {
type = bool
default = false
}
variable "privacy_center_use_api_config" {
description = "Use API-based configuration instead of static files."
type = bool
default = false
}

variable "privacy_center_root_property_path" {
description = "Root property path for privacy center."
nullable = true
type = string
default = ""
}


# AWS Networking

Expand Down