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 elements of HCL configuration files are [...] , and within them, arguments.
Answer

blocks

^^^ example:

resource "aws_instance" "example" {
  ami           = "ami-b374d5a5"
  instance_type = "t2.micro"
}

where you have a block type of resource, with two labels ("aws_instance", which is resource type, and "example" which is your internal name for the resource). And within this resource block you have arguments, describing/declaring the resource.


Question
In terraform, the main elements of HCL configuration files are [...] , and within them, arguments.
Answer
?

Question
In terraform, the main elements of HCL configuration files are [...] , and within them, arguments.
Answer

blocks

^^^ example:

resource "aws_instance" "example" {
  ami           = "ami-b374d5a5"
  instance_type = "t2.micro"
}

where you have a block type of resource, with two labels ("aws_instance", which is resource type, and "example" which is your internal name for the resource). And within this resource block you have arguments, describing/declaring the resource.


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.