Skip to content

Commit 5431284

Browse files
committed
chore: Initial start to migration guide
1 parent 0277e00 commit 5431284

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed

docs/UPGRADE-6.0.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Upgrade from v5.x to v6.x
2+
3+
If you have any questions regarding this upgrade process, please consult the [`examples`](https://github.com/terraform-aws-modules/terraform-aws-ecs/tree/master/examples) directory:
4+
If you find a bug, please open an issue with supporting configuration to reproduce.
5+
6+
## List of backwards incompatible changes
7+
8+
- Terraform v1.5.7 is now minimum supported version
9+
- AWS provider v6.0.0 is now minimum supported version
10+
11+
## Additional changes
12+
13+
### Added
14+
15+
- Support for `region` parameter to specify the AWS region for the resources created if different from the provider region.
16+
17+
### Modified
18+
19+
- Variable definitions now contain detailed `object` types in place of the previously used any type.
20+
21+
### Variable and output changes
22+
23+
1. Removed variables:
24+
25+
-
26+
27+
2. Renamed variables:
28+
29+
-
30+
31+
3. Added variables:
32+
33+
-
34+
35+
4. Removed outputs:
36+
37+
-
38+
39+
5. Renamed outputs:
40+
41+
-
42+
43+
6. Added outputs:
44+
45+
-
46+
47+
## Upgrade Migrations
48+
49+
### Before 5.x Example
50+
51+
```hcl
52+
module "ecs" {
53+
source = "terraform-aws-modules/ecs/aws"
54+
version = "~> 5.0"
55+
56+
# Truncated for brevity ...
57+
58+
}
59+
```
60+
61+
### After 6.x Example
62+
63+
```hcl
64+
module "ecs" {
65+
source = "terraform-aws-modules/ecs/aws"
66+
version = "~> 6.0"
67+
68+
# Truncated for brevity ...
69+
70+
}
71+
```
72+
73+
### State Changes
74+
75+
TODO

0 commit comments

Comments
 (0)