TF-003 Understand IaC concepts • Set 3
TF-003 Understand IaC concepts Practice Test 3 — 15 questions with explanations. Free, no signup.
A team uses the backend configuration above. What is the primary benefit of storing state remotely in S3?
# backend.tf
terraform {
backend "s3" {
bucket = "my-terraform-state"
key = "prod/terraform.tfstate"
region = "us-east-1"
}
}