forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigrations.tf
30 lines (24 loc) · 813 Bytes
/
migrations.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# --------------------------------------------------------------------------------------------------
# Migrations to 1.0.0
# Replacing `enabled` argument in secure-bucket module with `count` meta-argument
# --------------------------------------------------------------------------------------------------
moved {
from = aws_s3_bucket.access_log[0]
to = aws_s3_bucket.access_log
}
moved {
from = aws_s3_bucket_policy.access_log_policy[0]
to = aws_s3_bucket_policy.access_log_policy
}
moved {
from = aws_s3_bucket_public_access_block.access_log[0]
to = aws_s3_bucket_public_access_block.access_log
}
moved {
from = aws_s3_bucket.content[0]
to = aws_s3_bucket.content
}
moved {
from = aws_s3_bucket_public_access_block.content[0]
to = aws_s3_bucket_public_access_block.content
}