Question 61

Terraform is currently being used by your organisation to create resources on AWS for the development of a
web application. One of your coworkers wants to change the instance type to "t2.large" while keeping the
default set values.
What adjustments does the teammate make in order to meet his goal?
  • Question 62

    You just upgraded the version of a provider in an existing Terraform project. What do you need to do to install
    the new provider?
  • Question 63

    During a terraform plan, a resource is successfully created but eventually fails during provisioning. What
    happens to the resource?
  • Question 64

    By default, a defined provisioner is a creation-time provisioner.
  • Question 65

    Given the Terraform configuration below, in which order will the resources be created?
    1. resource "aws_instance" "web_server"
    2. {
    3. ami = "ami-b374d5a5"
    4. instance_type = "t2.micro"
    5. }
    6. resource "aws_eip" "web_server_ip"
    7. {
    8. vpc = true instance = aws_instance.web_server.id
    9. }