HashiCorp VA-002-P - HashiCorp Certified: Vault Associate
The command vault lease revoke -prefix aws/ will revoke all leases associated with the secret engine mounted at aws/
Which of the following storage backends are supported by HashiCorp technical support? (select four)
Which of the following Terraform files should be ignored by Git when committing code to a repo? (select two)
Which of the following best describes a token accessor?
When using parent/child modules to deploy infrastructure, how would you export value from one module to import into another module?
For example, a module dynamically deploys an application instance or virtual machine, and you need the IP address in another module to configure a related DNS record in order to reach the newly deployed application.
From the unseal options listed below, select the options you can use if you're deploying Vault on-premises. (select four)
A user has created a module called "my_test_module" and committed it to GitHub. Over time, several commits have been made with updates to the module, each tagged in GitHub with an incremental version number. Which of the following lines would be required in a module configuration block in terraform to select tagged version v1.0.4?
Vault configuration files can be written in what languages? (select two)
Which auth method is ideal for machine to machine authentication?
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. }
