nerdexam
HashiCorp

TERRAFORM-ASSOCIATE-004 · 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

Submitted by lars.no· Apr 18, 2026Understand Terraform Providers

Question

What is the provider for this resource?

Options

  • AVpc
  • BTest
  • CMain
  • Daws

How the community answered

(33 responses)
  • A
    3% (1)
  • B
    3% (1)
  • C
    6% (2)
  • D
    88% (29)

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

#Terraform Provider#Resource Block#Syntax#AWS Provider

Community Discussion

No community discussion yet for this question.

Full TERRAFORM-ASSOCIATE-004 Practice