Questions
- Which of the following is the best option for managing a large enterprise infrastructure environment using Terraform?
A. Data sources
B. Stacks and modules
C. Resources
D. Provisioners
- Suppose you have created a Terraform stack and you can see that the indentation of the Terraform code is not in the correct format. Which of the following Terraform commands would you run?
A. terraform sources
B. terraform init
C. terraform fmt -recursive
D. terraform plan
- Which command needs to be executed to download Terraform modules from the Github source?
A. terraform init
B. terraform syntax
C. terraform fmt
D. terraform plan
- You created a Terraform stack containing the following code
module "azure_stacks" {   source                   = "../stacks"   resource_group_name...