forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmigrations.tf
29 lines (24 loc) · 770 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 0.31.0
# Removing `enabled` argument.
# --------------------------------------------------------------------------------------------------
moved {
from = aws_sns_topic.config[0]
to = aws_sns_topic.config
}
moved {
from = aws_sns_topic_policy.config[0]
to = aws_sns_topic_policy.config
}
moved {
from = aws_config_configuration_recorder.recorder[0]
to = aws_config_configuration_recorder.recorder
}
moved {
from = aws_config_configuration_recorder_status.recorder[0]
to = aws_config_configuration_recorder_status.recorder
}
moved {
from = aws_config_delivery_channel.bucket[0]
to = aws_config_delivery_channel.bucket
}