Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
YakDriver committed Feb 7, 2022
1 parent d687a5a commit 13c6332
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions website/docs/guides/version-4-upgrade.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Upgrade topics:
- [Resource: aws_elasticache_cluster](#resource-aws_elasticache_cluster)
- [Resource: aws_elasticache_global_replication_group](#resource-aws_elasticache_global_replication_group)
- [Resource: aws_elasticache_replication_group](#resource-aws_elasticache_replication_group)
- [Resource: aws_fsx_ontap_storage_virtual_machine](#resource-aws_fsx_ontap_storage_virtual_machine)
- [Resource: aws_fsx_ontap_storage_virtual_machine](#resource-aws_fsx_ontap_storage_virtual_machine)
- [Resource: aws_lb_target_group](#resource-aws_lb_target_group)
- [Resource: aws_network_interface](#resource-aws_network_interface)
- [Resource: aws_s3_bucket](#resource-aws_s3_bucket)
Expand Down Expand Up @@ -892,7 +892,7 @@ resource "aws_s3_bucket" "example" {
resource "aws_s3_bucket_cors_configuration" "example" {
bucket = aws_s3_bucket.example.id
cors_rule {
allowed_headers = ["*"]
allowed_methods = ["PUT", "POST"]
Expand Down Expand Up @@ -947,7 +947,7 @@ resource "aws_s3_bucket" "example" {
days = 90
}
}
lifecycle_rule {
id = "tmp"
prefix = "tmp/"
Expand Down Expand Up @@ -981,7 +981,7 @@ resource "aws_s3_bucket" "example" {
resource "aws_s3_bucket_lifecycle_configuration" "example" {
bucket = aws_s3_bucket.example.id
rule {
id = "log"
status = "Enabled"
Expand Down Expand Up @@ -1277,9 +1277,9 @@ For example, given this previous configuration:
```terraform
resource "aws_s3_bucket" "source" {
provider = aws.central
# ... other configuration ...
replication_configuration {
role = aws_iam_role.replication.arn
rules {
Expand Down Expand Up @@ -1329,7 +1329,7 @@ resource "aws_s3_bucket" "source" {
resource "aws_s3_bucket_replication_configuration" "example" {
bucket = aws_s3_bucket.source.id
role = aws_iam_role.replication.arn
rule {
id = "foobar"
status = "Enabled"
Expand Down

0 comments on commit 13c6332

Please sign in to comment.