File tree Expand file tree Collapse file tree
modules/datastore/postgres/gcp-cloudsql/1.0 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11intent : postgres
22flavor : gcp-cloudsql
3- version : ' 1 .0'
3+ version : ' 2 .0'
44clouds :
55- gcp
66description : Managed PostgreSQL database using Google Cloud SQL with secure defaults
252252sample :
253253 kind : postgres
254254 flavor : gcp-cloudsql
255- version : ' 1 .0'
255+ version : ' 2 .0'
256256 disabled : true
257257 spec :
258258 version_config :
Original file line number Diff line number Diff line change 44
55# Random password for PostgreSQL user (when not restoring from backup or importing)
66resource "random_password" "postgres_password" {
7- count = var. instance . spec . restore_config . restore_from_backup ? 0 : 1
8- length = 16
9- special = true
7+ count = var. instance . spec . restore_config . restore_from_backup ? 0 : 1
8+ length = 16
9+ special = true
10+ override_special = " !#$&*-=?^_`{|}~" # Safe special characters, excludes ;+% rejected by AWS DMS
1011
1112 lifecycle {
1213 ignore_changes = [
You can’t perform that action at this time.
0 commit comments