Skip to content

Commit 6e5f9a4

Browse files
committed
fix: move things from old version to new version
1 parent f46b0b9 commit 6e5f9a4

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

.spacelift/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: 1
2-
module_version: 2.8.0
2+
module_version: 2.9.0
33
tests:
44
- name: AMD64-based workerpool
55
project_root: examples/amd64

moved.tf

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
moved {
2+
to = aws_ssm_parameter.spacelift_api_key_secret[0]
3+
from = module.autoscaler["ENABLED"].aws_ssm_parameter.spacelift_api_key_secret
4+
}
5+
6+
moved {
7+
to = null_resource.download[0]
8+
from = module.autoscaler["ENABLED"].null_resource.download
9+
}
10+
11+
moved {
12+
to = aws_lambda_function.autoscaler[0]
13+
from = module.autoscaler["ENABLED"].aws_lambda_function.autoscaler
14+
}
15+
16+
moved {
17+
to = aws_cloudwatch_event_rule.scheduling[0]
18+
from = module.autoscaler["ENABLED"].aws_cloudwatch_event_rule.scheduling
19+
}
20+
21+
moved {
22+
to = aws_cloudwatch_event_target.scheduling[0]
23+
from = module.autoscaler["ENABLED"].aws_cloudwatch_event_target.scheduling
24+
}
25+
26+
moved {
27+
to = aws_lambda_permission.allow_cloudwatch_to_call_lambda[0]
28+
from = module.autoscaler["ENABLED"].aws_lambda_permission.allow_cloudwatch_to_call_lambda
29+
}
30+
31+
moved {
32+
to = aws_cloudwatch_log_group.log_group[0]
33+
from = module.autoscaler["ENABLED"].aws_cloudwatch_log_group.log_group
34+
}
35+
36+
moved {
37+
to = aws_iam_role.autoscaler[0]
38+
from = module.autoscaler["ENABLED"].aws_iam_role.autoscaler
39+
}

0 commit comments

Comments
 (0)