You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please consult the `examples` directory for reference example configurations. If you find a bug, please open an issue with supporting configuration to reproduce.
4
+
5
+
## List of backwards incompatible changes
6
+
7
+
- Terraform `v1.5.7` is now minimum supported version
8
+
- AWS provider `v6.5` is now minimum supported version
9
+
10
+
## Additional changes
11
+
12
+
### Added
13
+
14
+
- Support for `region` parameter to specify the AWS region for the resources created if different from the provider region.
15
+
16
+
### Modified
17
+
18
+
- Variable definitions now contain detailed `object` types in place of the previously used `any` type.
19
+
- Security group rules now use a default naming scheme of `<security-group-name>-<map-key>` unless a more specific rule name is provided.
20
+
-`rule.actions.type` has been replaced with `rule.actions.<type>`. See before/after below for more details.
21
+
-`query_string` supports a list of key:value pairs; type definition updated to support this (i.e. was `map(string)` and is now `list(map(string))`)
22
+
23
+
### Removed
24
+
25
+
- None
26
+
27
+
### Variable and output changes
28
+
29
+
1. Removed variables:
30
+
31
+
- None
32
+
33
+
2. Renamed variables:
34
+
35
+
- None
36
+
37
+
3. Added variables:
38
+
39
+
- None
40
+
41
+
4. Removed outputs:
42
+
43
+
- None
44
+
45
+
5. Renamed outputs:
46
+
47
+
- None
48
+
49
+
6. Added outputs:
50
+
51
+
- None
52
+
53
+
## Upgrade Migrations
54
+
55
+
### Diff of Before vs After
56
+
57
+
```diff
58
+
module "alb" {
59
+
source = "terraform-aws-modules/alb/aws"
60
+
- version = "9.17.0"
61
+
+ version = "10.0.0"
62
+
63
+
listeners = {
64
+
ex-http-https-redirect = {
65
+
port = 80
66
+
protocol = "HTTP"
67
+
redirect = {
68
+
port = "443"
69
+
protocol = "HTTPS"
70
+
status_code = "HTTP_301"
71
+
}
72
+
73
+
rules = {
74
+
ex-fixed-response = {
75
+
priority = 3
76
+
actions = [{
77
+
# Same for all action types, not just `fixed_response`
0 commit comments