Add some Terraform variable defaults to ensure Terraform can run in CI

This commit is contained in:
R. Tyler Croy 2017-12-12 15:38:20 -08:00
parent f3e608f519
commit 07373247ca
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 16 additions and 4 deletions

View File

@ -21,8 +21,20 @@ variable "region" {
# Variables which should be kept secret
# and provided by a --var-file
#######################################
variable "subscription_id" {}
variable "client_id" {}
variable "client_secret" {}
variable "tenant_id" {}
variable "subscription_id" {
type = "string"
default = "invalid-subscription"
}
variable "client_id" {
type = "string"
default = "invalid-client"
}
variable "client_secret" {
type = "string"
default = "invalid-client-secret"
}
variable "tenant_id" {
type = "string"
default = "invalid-tenant-id"
}
#######################################