In the example below, the depends_on argument creates what type of dependency? resource “aws_instance” “example” { ami = “ami-2757f631” instance_type = “t2.micro” depends_on = [aws_s3_bucket.company_data] } non-dependency resource explicit dependency(Correct) internal dependency implicit dependency Explanation Explicit dependencies in Terraform are dependencies that are explicitly declared in the Terraform configuration. These dependencies are used to control the order […]
HashiCorp Terraform Associate Exam Actual Questions-008問題集
36 What value does the Terraform Cloud/Terraform Enterprise private module registry provide over the public Terraform Module Registry? A. The ability to share modules with public Terraform users and members of Terraform Enterprise Organizations B. The ability to tag modules by version or release C. The ability to restrict modules to members of Terraform Cloud or Enterprise organizations […]
HashiCorp Terraform Associate Exam Actual Questions-008解答
36 Correct Answer: D Terraform Registry is an index of modules shared publicly using this protocol. This public registry is the easiest way to get started with Terraform and find modules created by others in the community. Reference: https://www.terraform.io/docs/language/modules/sources.html 37 Correct Answer: D Reference:https://www.terraform.io/docs/cli/commands/init.html 38 Correct Answer: AB 39 Correct Answer: B The variable declaration can also include […]