Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question

In terraform, say you declared input variable "region", using following block in your *.tf config file:

variable "region" {}

and you use its value in the following *.tf code block:

provider "aws" {
  access_key = "AKIA98298ADFDDRDSFDFSF"
  secret_key = "_adofijoeairjdsfDDF(*Fjij"
  region     = "${var.region}"
}

how do you assign it value of "us-west-2" in your *.tfvars file:

[...]

Answer
region = "us-west-2"

Question

In terraform, say you declared input variable "region", using following block in your *.tf config file:

variable "region" {}

and you use its value in the following *.tf code block:

provider "aws" {
  access_key = "AKIA98298ADFDDRDSFDFSF"
  secret_key = "_adofijoeairjdsfDDF(*Fjij"
  region     = "${var.region}"
}

how do you assign it value of "us-west-2" in your *.tfvars file:

[...]

Answer
?

Question

In terraform, say you declared input variable "region", using following block in your *.tf config file:

variable "region" {}

and you use its value in the following *.tf code block:

provider "aws" {
  access_key = "AKIA98298ADFDDRDSFDFSF"
  secret_key = "_adofijoeairjdsfDDF(*Fjij"
  region     = "${var.region}"
}

how do you assign it value of "us-west-2" in your *.tfvars file:

[...]

Answer
region = "us-west-2"

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.