-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoved.tf
74 lines (60 loc) · 1.5 KB
/
moved.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
moved {
from = aws_cloudfront_origin_access_identity.staticsite-oai
to = aws_cloudfront_origin_access_identity.this
}
moved {
from = aws_acm_certificate.staticsite-acm-cert
to = aws_acm_certificate.this
}
moved {
from = aws_route53_record.staticsite-acm-cert-validate
to = aws_route53_record.cert_validation
}
moved {
from = aws_acm_certificate_validation.staticsite-acm
to = aws_acm_certificate_validation.this
}
moved {
from = aws_cloudfront_distribution.staticsite-cf
to = aws_cloudfront_distribution.this
}
moved {
from = aws_s3_bucket.staticsite-s3
to = aws_s3_bucket.this
}
moved {
from = aws_s3_bucket_policy.staticsite-s3
to = aws_s3_bucket_policy.this
}
moved {
from = aws_s3_bucket_cors_configuration.staticsite-s3
to = aws_s3_bucket_cors_configuration.this
}
moved {
from = aws_s3_bucket_acl.staticsite-s3
to = aws_s3_bucket_acl.this
}
moved {
from = aws_s3_bucket_website_configuration.staticsite-s3
to = aws_s3_bucket_website_configuration.this
}
moved {
from = aws_cloudfront_function.staticsite-indexhandler
to = aws_cloudfront_function.index_handler
}
moved {
from = aws_route53_record.staticsite-route53-a
to = aws_route53_record.cloudfront_a
}
moved {
from = aws_iam_user.staticsite-iam-deployer
to = aws_iam_user.deployer
}
moved {
from = aws_iam_access_key.staticsite-iam-deployer
to = aws_iam_access_key.deployer
}
moved {
from = aws_iam_user_policy.staticsite-iam-deployer
to = aws_iam_user_policy.deployer
}