I am using Terraform 0.8.8 and it keeps asking me to interactively input certain variables (the first being var.allowed_ips_app_elb_https_env_specific).
I have a variables.tf file which contains all of the variables I want to input, yet it keeps asking me to input them when I run a terraform plan.
All of our code has been committed to our internal Gitlab and my colleague can run the same code without it asking him to interactively inputting the variables.
The following is part of the variables.tf file that asking me to input the variables when I run the plan command.
# Allowed IPs to both dev/prod environments.
variable "allowed_ips_app_elb_https" {
default =
[ "*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
"*.*.*.*/*", # *
]
}
^ I have removed the IPs and comments and change them to *.
Thanks,
O.R