Skip to content

Commit

Permalink
Ccd-5838 Fix DTS user for definition-store (#1504)
Browse files Browse the repository at this point in the history
* Update main.tf

* Update variables.tf
  • Loading branch information
nathan-clark authored Oct 3, 2024
1 parent 0eb5779 commit 6ead193
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ module "postgresql_v15" {
component = var.component
env = var.env
subnet_suffix = var.subnet_suffix
force_user_permissions_trigger = "1"
pgsql_databases = [
{
name = var.database_name
Expand Down
8 changes: 7 additions & 1 deletion infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,10 @@ variable "subnet_suffix" {
default = null
type = string
description = "Suffix to append to the subnet name, the originally created one used by this module is full in a number of environments."
}
}

variable "force_user_permissions_trigger" {
default = ""
type = string
description = "Update this to a new value to force the user permissions script to run again"
}

0 comments on commit 6ead193

Please sign in to comment.