Skip to content

Instantly share code, notes, and snippets.

@nickithewatt
Created November 5, 2016 15:09
Show Gist options
  • Save nickithewatt/9d855041e76d4021cb20cf70b1297726 to your computer and use it in GitHub Desktop.
Save nickithewatt/9d855041e76d4021cb20cf70b1297726 to your computer and use it in GitHub Desktop.
# ----------------------------------------------------------------
# sensitive variables (should be passed in via tfvars)
# ----------------------------------------------------------------
variable "pretend_aws_access_key" {}
variable "pretend_aws_secret_key" {}
variable "tf_sensitive_key_1" {}
variable "tf_sensitive_key_2" {}
variable "tf_sensitive_key_3" {}
variable "tf_sensitive_key_4" {}
variable "tf_sensitive_key_6" {}
variable "tf_sensitive_list_vals" { type = "list" }
variable "tf_sensitive_flatmap_vals" { type = "map" }
# ----------------------------------------------------------------
# Non sensitive variable defaults
# ----------------------------------------------------------------
variable "tf_normal_key_1" { default = "normal value 1" }
variable "tf_normal_key_2" { default = "normal value 2" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment