When multiple engineers start deploying infrastructure using the same state file, what is a feature of remote state storage that is critical to ensure the state does not become corrupt?A . state lockingB . object storageC . encryptionD . workspaces View Answer Answer: A Explanation: If supported by your backend, Terraform will lock your...
Which of the following is an invalid variable name?
Which of the following is an invalid variable name?A . instance_nameB . webC . var1D . count View Answer Answer: D Explanation: count is a reserved word. The count parameter on resources can simplify configurations and let you scale resources by simply incrementing a number. https://www.terraform.io/intro/examples/count.html...
Please Answer Questions Follow The Prompts Below
}A . The EC2 instance labeled web_serverB . The EIP with an id of ami-2757f631C . The AMI used for the EC2 instanceD . The S3 bucket labeled company_data View Answer Answer: A Explanation: The EC2 instance labeled web_server is the implicit dependency as the aws_eip cannot be created until the aws_instance labeled web_server...
Please Answer Questions Follow The Prompts Below
}A . anything they want to within VaultB . ability to enable a secret engine at the path *C . only make changes to policiesD . nothing, since the policy doesn’t specify any specific paths View Answer Answer: A Explanation: All interactions with Vault are done through its pathing structure. If you create a...
Choose the correct answer which fixes the syntax of the following Terraform code:
Choose the correct answer which fixes the syntax of the following Terraform code:A . resource "aws_security_group" "vault_elb" { name = "${var.name_prefix}-vault-elb" description = var_Vault ELB vpc_id = var.vpc_id }B . resource "aws_security_group" "vault_elb" { name = "${var.name_prefix}-vault-elb" description = Vault ELB vpc_id = var.vpc_id }C . resource "aws_security_group" "vault_elb" { name = "${var.name_prefix}-vault-elb" description...
What happened?
You’ve set up multiple Vault clusters, one on-premises which is intended to be the primary cluster, and the second cluster in AWS, which was deployed to be used for performance replication. After enabling replication, developers complain that all the data they’ve stored in the AWS Vault cluster is missing. What happened?A . the data...
Which of the following is not a valid Terraform string function?
Which of the following is not a valid Terraform string function?A . tostringB . replaceC . formatD . join View Answer Answer: A Explanation: tostring is not a string function, it is a type conversion function. tostring converts its argument to a string value. https://www.terraform.io/docs/configuration/functions/tostring.html...
In order to extend a Consul storage backend, Consul nodes should be provisioned across multiple data centers or cloud regions.
In order to extend a Consul storage backend, Consul nodes should be provisioned across multiple data centers or cloud regions.A . TrueB . False View Answer Answer: B Explanation: Consul nodes in the same cluster should not be provisioned across multiple data centers or cloud regions due to the low-latency requirements....
What needs to be changed in order to successfully start Vault?
Vault has failed to start. You inspect the log and find the error below. What needs to be changed in order to successfully start Vault? "Error parsing config.hcl: At 1:12: illegal char"A . the " character cannot be used in the config fileB . fix the syntax error in the Vault configuration fileC ....
Please Answer Questions Follow The Prompts Below
}A . The EC2 instance labeled web_serverB . The EIP with an id of ami-2757f631C . The AMI used for the EC2 instanceD . The S3 bucket labeled company_data View Answer Answer: A Explanation: The EC2 instance labeled web_server is the implicit dependency as the aws_eip cannot be created until the aws_instance labeled web_server...