Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
digicosmos86 committed Jun 14, 2023
1 parent 6595ddc commit 38881c1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
15 changes: 12 additions & 3 deletions examples/simple-project/variables.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@


variable "activate_apis" {
type = list(string)
default = [
"compute.googleapis.com",
"cloudresourcemanager.googleapis.com"
]
}

# This are secrets. They are passsed in terraform.tfvars file
variable "billing_account" {}
variable "org_id" {}
variable "folder_id" {}
variable "billing_account" {
type = string
}

variable "org_id" {
type = string
}

variable "folder_id" {
type = string
}
3 changes: 3 additions & 0 deletions examples/simple-project/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
terraform {
required_version = ">= 1.5.0"
}

0 comments on commit 38881c1

Please sign in to comment.