Skip to content

Commit 13a4697

Browse files
committed
Fix missing LB rule
1 parent f504a2f commit 13a4697

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

deploy/devops/tf-env/oke.tf

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,16 @@ module "oke" {
2121
create = "never"
2222
}
2323
cp = {
24-
create = "always"
24+
create = "always",
25+
cidr = "10.22.0.8/29"
2526
}
2627
pub_lb = {
27-
create = "always"
28+
create = "always",
29+
cidr = "10.22.128.0/27"
2830
}
2931
workers = {
30-
create = "always"
32+
create = "always",
33+
cidr = "10.22.144.0/20"
3134
}
3235
int_lb = {
3336
create = "never"

0 commit comments

Comments
 (0)