Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 8 additions & 0 deletions fides-aws-ecs/ecs-privacy-center.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ 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)
},
{
name = "FIDES_PRIVACY_CENTER__ROOT_PROPERTY_PATH"
value = tostring(var.privacy_center_root_property_path)
}
]
logConfiguration = {
Expand Down
12 changes: 12 additions & 0 deletions fides-aws-ecs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ 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."
type = bool
default = null
}


# AWS Networking

Expand Down