diff --git a/examples/terraform-pg-state-locking/00-bootstrap/030-postgresql_flex.tf b/examples/terraform-pg-state-locking/00-bootstrap/030-postgresql_flex.tf index 11e2c85..db499da 100644 --- a/examples/terraform-pg-state-locking/00-bootstrap/030-postgresql_flex.tf +++ b/examples/terraform-pg-state-locking/00-bootstrap/030-postgresql_flex.tf @@ -31,6 +31,7 @@ resource "stackit_postgresflex_instance" "this" { backup_schedule = "00 00 * * *" acl = [ + # WARNING: Open ACL is for development only. Restrict to your specific egress IP ranges in production. "0.0.0.0/0" ] diff --git a/examples/terraform-pg-state-locking/00-bootstrap/040-output.tf b/examples/terraform-pg-state-locking/00-bootstrap/040-output.tf index f345841..9e0fa24 100644 --- a/examples/terraform-pg-state-locking/00-bootstrap/040-output.tf +++ b/examples/terraform-pg-state-locking/00-bootstrap/040-output.tf @@ -22,6 +22,6 @@ locals { output "pg_connection_uri" { description = "PostgreSQL Flex User Connection String" - value = "postgres://${local.pg_username}:${local.pg_password}@${local.pg_host}:${local.pg_port}/${local.pg_database}?sslmode=require" + value = "postgres://${local.pg_username}:${local.pg_password}@${local.pg_host}:${local.pg_port}/${local.pg_database}?sslmode=require" # trufflehog:ignore sensitive = true } diff --git a/examples/terraform-pg-state-locking/00-bootstrap/terraform.tfvars.example b/examples/terraform-pg-state-locking/00-bootstrap/terraform.tfvars.example index d16ff30..a144c2d 100644 --- a/examples/terraform-pg-state-locking/00-bootstrap/terraform.tfvars.example +++ b/examples/terraform-pg-state-locking/00-bootstrap/terraform.tfvars.example @@ -15,7 +15,7 @@ stackit_organization_id = "" ## Name of the bootstrapping project -stackit_project_name = "01-example-project" +stackit_project_name = "00-bootstrap" # Email address of the STACKIT user set as project owner. stackit_org_admin = "