Terraform-Associate-004 Exam Question 131

What is the primary purpose of Infrastructure as Code (IaC)?
  • Terraform-Associate-004 Exam Question 132

    You modified your Terraform configuration to fix a typo in the resource ID by renaming it from photoes to photos. What configuration will you add to update the resource ID in state without destroying the existing resource?
    Original configuration:
    resource " aws_s3_bucket " " photoes " {
    bucket_prefix = " images "
    }
    Updated configuration:
    resource " aws_s3_bucket " " photos " {
    bucket_prefix = " images "
    }
  • Terraform-Associate-004 Exam Question 133

    When declaring a variable, setting the sensitive argument to true will prevent the value from being stored in the state file.
  • Terraform-Associate-004 Exam Question 134

    What information does the public Terraform Module Registry automatically expose about published modules?
  • Terraform-Associate-004 Exam Question 135

    If a module declares a variable without a default value, you must pass the value of the variable within the module block when you call the module in your configuration.