Why would the replication configuration be missing?
After logging into the Vault UI, a user complains that they cannot enable Replication. Why would the replication configuration be missing?A . replication wasn't configured in the Vault configuration fileB . replication hasn't been enabledC . Vault is running an open-source versionD . replication configuration isn't available in the UIView...
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 pathsView AnswerAnswer: A Explanation: All interactions with Vault are done through its pathing structure. If you...
What feature could you use to iterate over a list of required tcp ports to add to the new security group?
You have been given requirements to create a security group for a new application. Since your organization standardizes on Terraform, you want to add this new security group with the fewest number of lines of code. What feature could you use to iterate over a list of required tcp ports...
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_dataView AnswerAnswer: A Explanation: The EC2 instance labeled web_server is the implicit dependency as the aws_eip cannot be created until the aws_instance...
If a client is currently assigned the following policy, what additional policy can be added to ensure they cannot access the data stored at secret/apps/confidential but still, read all other secrets?
If a client is currently assigned the following policy, what additional policy can be added to ensure they cannot access the data stored at secret/apps/confidential but still, read all other secrets?A . path "secret/apps/confidential/*" { capabilities = ["deny"] }B . path "secret/apps/*" { capabilities = ["deny"] }C . path "secret/apps/confidential"...
Which command is used to initialize Vault after first starting the Vault service?
Which command is used to initialize Vault after first starting the Vault service?A . vault create keyB . vault operator initC . vault operator initialize keysD . vault startE . vault operator unsealView AnswerAnswer: B Explanation: The vault operator init command initializes a Vault server. Initialization is the process by...
Terraform Enterprise (also referred to as pTFE) requires what type of backend database for a clustered deployment?
Terraform Enterprise (also referred to as pTFE) requires what type of backend database for a clustered deployment?A . CassandraB . MSSQLC . PostgreSQLD . MySQLView AnswerAnswer: C Explanation: External Services mode stores the majority of the stateful data used by the instance in an external PostgreSQL database and an external...
While Vault provides businesses tons of functionality out of the box, what feature allows you to extend its functionality with solutions written by third-party providers?
While Vault provides businesses tons of functionality out of the box, what feature allows you to extend its functionality with solutions written by third-party providers?A . vault agentB . namespacesC . plugin backendD . control groupsView AnswerAnswer: C Explanation: Plugin backends are the components in Vault that can be implemented...
True or False:
True or False: The terraform refresh command is used to reconcile the state Terraform knows about (via its state file) with the real-world infrastructure. If the drift is detected between the real-world infrastructure and the last known-state, it will modify the infrastructure to correct the drift.A . FalseB . TrueView...
What is the result of the following terraform function call? index(["a", "b", "c"], "c")
What is the result of the following terraform function call? index(["a", "b", "c"], "c")A . 1B . trueC . 2D . 0View AnswerAnswer: C Explanation: index finds the element index for a given value in a list starting with index 0. https://www.terraform.io/docs/configuration/functions/index.html