Skip to content

Commit

Permalink
Fix terraform format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
q2w committed Aug 9, 2024
1 parent 4c20863 commit 5c2add3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions modules/vpc-serverless-connector-beta/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ variable "project_id" {

variable "vpc_connectors" {
type = list(object({
name = string,
region = string,
network = optional(string, null),
subnet_name = optional(string, null),
ip_cidr_range = optional(string, null),
name = string,
region = string,
network = optional(string, null),
subnet_name = optional(string, null),
ip_cidr_range = optional(string, null),
host_project_id = optional(string, null),
machine_type = optional(string, null),
min_instances = optional(number, null),
max_instances = optional(number, null),
max_throughput = optional(number, null)
machine_type = optional(string, null),
min_instances = optional(number, null),
max_instances = optional(number, null),
max_throughput = optional(number, null)
}))
default = []
description = "List of VPC serverless connectors."
Expand Down

0 comments on commit 5c2add3

Please sign in to comment.