Question 136

Dawn has created the below child module. Without changing the module, can she override the instance_type from t2.micro to t2.large form her code while calling this module?
1. resource "aws_instance" "myec2"
2. {
3. ami = "ami-082b5a644766e0e6f"
4. instance_type = "t2.micro
5. }
  • Question 137

    Eric needs to make use of module within his terraform code. Should the module always be public and open-source to be able to be used?
  • Question 138

    Examine the following Terraform configuration, which uses the data source for an AWS AMI.
    What value should you enter for the ami argument in the AWS instance resource?
  • Question 139

    Why would you use the terraform taint command?
  • Question 140

    Which of the below features of Terraform can be used for managing small differences between different environments which can act more like completely separate working directories.