nerdexam
HashiCorp

TERRAFORM-ASSOCIATE-003 · Question #180

What is the provider for this resource?

The correct answer is D. aws. In the given Terraform configuration snippet: resource "aws_vpc" "main" { The provider for the resource aws_vpc is aws. The provider is specified by the prefix of the resource type. In this case, aws_vpc indicates that the resource type vpc is provided by the aws

Understand Terraform basics

Question

What is the provider for this resource?

Options

  • AVpc
  • BTest
  • CMain
  • Daws

How the community answered

(32 responses)
  • A
    6% (2)
  • B
    16% (5)
  • C
    3% (1)
  • D
    75% (24)

Explanation

In the given Terraform configuration snippet: resource "aws_vpc" "main" { The provider for the resource aws_vpc is aws. The provider is specified by the prefix of the resource type. In this case, aws_vpc indicates that the resource type vpc is provided by the aws

Topics

#provider identification#resource naming#HCL syntax#provider block

Community Discussion

No community discussion yet for this question.

Full TERRAFORM-ASSOCIATE-003 Practice