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, the main elementes of configuration files are (fill out missing occulsion, note that the two occulsions are for same element, so looking for single answer here):

<BLOCK TYPE> " [...] " " [...] " {
# Block body
<IDENTIFIER> = <EXPRESSION> # Argument
}

Answer

BLOCK LABEL

^^ each block type can have 0 or more block labels, e.g. resource blocks ususally have 2 labels while variable blocks have just 1:

resource "aws_instance" "example" {
  ami           = "ami-b374d5a5"
  instance_type = "t2.micro"
}
variable "region" {
  default = "us-east-1"
}


Question

In terraform, the main elementes of configuration files are (fill out missing occulsion, note that the two occulsions are for same element, so looking for single answer here):

<BLOCK TYPE> " [...] " " [...] " {
# Block body
<IDENTIFIER> = <EXPRESSION> # Argument
}

Answer
?

Question

In terraform, the main elementes of configuration files are (fill out missing occulsion, note that the two occulsions are for same element, so looking for single answer here):

<BLOCK TYPE> " [...] " " [...] " {
# Block body
<IDENTIFIER> = <EXPRESSION> # Argument
}

Answer

BLOCK LABEL

^^ each block type can have 0 or more block labels, e.g. resource blocks ususally have 2 labels while variable blocks have just 1:

resource "aws_instance" "example" {
  ami           = "ami-b374d5a5"
  instance_type = "t2.micro"
}
variable "region" {
  default = "us-east-1"
}


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.