Skip to content

Commit b368589

Browse files
committed
Set missing variable types
1 parent 3339d4c commit b368589

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

modules/postgresql/variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ variable "region" {
3939

4040
variable "tier" {
4141
description = "The tier for the master instance."
42+
type = string
4243
default = "db-f1-micro"
4344
}
4445

@@ -160,6 +161,7 @@ variable "ip_configuration" {
160161

161162
variable "read_replica_size" {
162163
description = "The size of read replicas"
164+
type = number
163165
default = 0
164166
}
165167

modules/private_service_access/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ variable "address" {
3333
variable "prefix_length" {
3434
description = "Prefix length of the IP range reserved for Cloud SQL instances and other Private Service Access services. Defaults to /16."
3535
type = number
36-
default = "16"
36+
default = 16
3737
}
3838

3939
variable "ip_version" {

0 commit comments

Comments
 (0)