Normalize Terraform configs with terraform fmt

This commit is contained in:
Dalton Hubble
2018-03-11 14:46:05 -07:00
parent 35f3b1b28c
commit 8e7e6b9f7f
3 changed files with 18 additions and 18 deletions

View File

@ -4,17 +4,17 @@ variable "name" {
}
variable "vpc_id" {
type = "string"
type = "string"
description = "ID of the VPC for creating instances"
}
variable "subnet_ids" {
type = "list"
type = "list"
description = "List of subnet IDs for creating instances"
}
variable "security_groups" {
type = "list"
type = "list"
description = "List of security group IDs"
}
@ -47,7 +47,7 @@ variable "disk_size" {
# configuration
variable "kubeconfig" {
type = "string"
type = "string"
description = "Generated Kubelet kubeconfig"
}