devops-exercises/exercises/terraform/s3_bucket_rename/exercise.md
abregman 641f41aa96 Add Terraform and AWS exercises
In addition to multiple new questions.
2022-07-22 00:18:48 +03:00

20 lines
410 B
Markdown

# Rename S3 Bucket
## Requirements
* An existing S3 bucket tracked by Terraform.
If you don't have it, you can use the following block and run `terraform apply`:
```terraform
resource "aws_s3_bucket" "some_bucket" {
bucket = "some-old-bucket"
}
```
## Objectives
1. Rename an existing S3 bucket and make sure it's still tracked by Terraform
## Solution
Click [here to view the solution](solution.md)