CTJP Terraform Batch 3

CTJP Terraform Batch 3

Professional Development

10 Qs

quiz-placeholder

Similar activities

ToolBox Talk - Week 1

ToolBox Talk - Week 1

Professional Development

10 Qs

AWS ACF Módulo 5 - Redes e entrega de conteúdo

AWS ACF Módulo 5 - Redes e entrega de conteúdo

Professional Development

10 Qs

Terraform101

Terraform101

Professional Development

10 Qs

Terraform me up

Terraform me up

Professional Development

9 Qs

Is Your AWS Cloud Well Architected

Is Your AWS Cloud Well Architected

Professional Development

10 Qs

AWS Architect Class 8

AWS Architect Class 8

Professional Development

8 Qs

Terraform: Data Sources

Terraform: Data Sources

Professional Development

10 Qs

AWS Security - Semana 5

AWS Security - Semana 5

Professional Development

10 Qs

CTJP Terraform Batch 3

CTJP Terraform Batch 3

Assessment

Quiz

Computers

Professional Development

Easy

Created by

CloudThat Technologies

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

From the following list, how can we fetch the flower lily?

variable "flower_list" {

type = list

default = ["sunflower", "rose", "daisy", "lily"]

}

var.flower_list["lily"]

var.flower_list[3]

var.flower_list[2]

none of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

We have copied a sample terraform code from a GitHub repository to his local terraform configuration file.

There are certain formatting issues in the code.

resource "aws_instance" "cloudthat-ec2" {

ami = "ami-090fa75af13c156b4"

instance_type = "m5.large"

count = 5

}

Which command can we run to ensure that code is automatically formatted?

terraform code format

terraform format

terraform fmt

none of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Name of the file where Terraform stores state information.

terraform.tfvars

terraform.tfstate

terraform-tfstate

none of the above

4.

DRAG AND DROP QUESTION

1 min • 1 pt

Drag and drop the correct the answers to create an EC2 instance

resource "​ ​ (a)   " "myec2" {

ami = "​ (b)   "

instance_type = "​ (c)   "

}

aws_instance
ami-07efac79022b86107
t2.micro
aws-instance

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Terraform was used to construct 4 different resources.

One of the resource was removed manually removed from the AWS interface.

What will happen during the next Terraform apply?

the deleted resource will be created again

terraform will show error

no changes will be made

none of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If I want to see the public_ip after terraform apply, which block do we use?

output

input

resource

local

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

what is the provider in this code snippet?

resource "aws_eip" "myeip" {

vpc = true

}

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?