VA-002-P 무료 덤프문제 온라인 액세스
| 시험코드: | VA-002-P |
| 시험이름: | HashiCorp Certified: Vault Associate Exam |
| 인증사: | HashiCorp |
| 무료 덤프 문항수: | 202 |
| 업로드 날짜: | 2026-06-20 |
What Terraform feature is shown in the example below?
1. resource "aws_security_group" "example" {
2. name = "sg-app-web-01"
3. dynamic "ingress" {
4. for_each = var.service_ports
5. content {
6. from_port = ingress.value
7. to_port = ingress.value
8. protocol = "tcp"
9. }
10. }
11. }
Which flag would be used within a Terraform configuration block to identify the specific version of a provider required?
Which Terraform command will force a marked resource to be destroyed and recreated on the next apply?
Which two characters can be used when writing a policy to reflect a wildcard or path segment? (select two)
A user runs terraform init on their RHEL based server and per the output, two provider plugins are downloaded:
1. $ terraform init
2.
3. Initializing the backend...
4.
5. Initializing provider plugins...
6. - Checking for available provider plugins...
7. - Downloading plugin for provider "aws" (hashicorp/aws) 2.44.0...
8. - Downloading plugin for provider "random" (hashicorp/random) 2.2.1...
9.
10. Terraform has been successfully initialized!
Where are these plugins downloaded to?