Terraform-Associate-004 Exam Question 176

Module variable assignments are inherited from the parent module and you do not need to explicitly set them.
  • Terraform-Associate-004 Exam Question 177

    A Terraform local value can reference other Terraform local values.
  • Terraform-Associate-004 Exam Question 178

    In Terraform HCL, an object type of object({name=string, age-number}) would match this value.
  • Terraform-Associate-004 Exam Question 179

    The exhibit below shows part of a Terraform configuration you have been asked to update. The name of the Azure Virtual Network should be set to the name of the resource group followed by a dash and the word vnet.
    Exhibit:
    data " azurerm_resource_group " " example " {
    name = var.resource_group_name
    }
    resource " azurerm_virtual_network " " example " {
    name = ______________________
    }
    Which expression fulfills this requirement?