File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ resource "google_sql_database_instance" "instance" {
62
62
}
63
63
}
64
64
65
- location_preference {
66
- follow_gae_application = null
67
- zone = null
68
- }
65
+ # location_preference {
66
+ # follow_gae_application = null
67
+ # zone = null
68
+ # }
69
69
70
70
dynamic "maintenance_window" {
71
71
for_each = local. needs_maintenance_window
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ resource "random_password" "admin_user" {
2
2
length = 48
3
3
}
4
4
5
- resource "google_sql_user" "postgres_user " {
5
+ resource "google_sql_user" "admin_user " {
6
6
instance = google_sql_database_instance. instance . name
7
7
8
8
name = local. admin_user
9
9
password = random_password. admin_user . result
10
- type = " BUILT_IN"
10
+ type = " " # Equivalent of " BUILT_IN"
11
11
12
12
deletion_policy = null
13
13
}
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ variable "insights_config" {
67
67
68
68
variable "ipv4_enabled" {
69
69
type = bool
70
- default = false
70
+ default = true
71
71
}
72
72
73
73
variable "labels" {
You can’t perform that action at this time.
0 commit comments