Question 11
Which of the following connection types are supported by the remote-exec provisioner? (select two)
Question 12
What could you do with the feature found in the screenshot below? (select two)
Question 13
From the code below, identify the implicit dependency:
1. resource "aws_eip" "public_ip" {
2. vpc = true
3. instance = aws_instance.web_server.id
4. }
5. resource "aws_instance" "web_server" {
6. ami = "ami-2757f631"
7. instance_type = "t2.micro"
8. depends_on = [aws_s3_bucket.company_data]
9. }
Question 14
Which auth method is ideal for machine to machine authentication?
Question 15
What is the proper command to enable the AWS secrets engine at the default path?
