updated app resource

This commit is contained in:
Manuel Ganter 2025-11-11 16:20:36 +01:00
parent 728b27146e
commit 6c7a34d68a
No known key found for this signature in database
2 changed files with 88 additions and 132 deletions

View file

@ -17,26 +17,24 @@ resource "edge-connect_app" "edge_app_demo" {
manifest = file("${path.module}/k8s-deployment.yaml")
infra_template {
region = "US"
cloudlet_org = "TelekomOp"
cloudlet_name = "gardener-shepherd-test"
flavor_name = "default"
region = "US"
cloudlet_org = "TelekomOp"
cloudlet_name = "gardener-shepherd-test"
flavor_name = "default"
network {
outbound_connections {
protocol = "tcp"
port_range_min = 80
port_range_max = 80
remote_cidr = "0.0.0.0/0"
}
network {
outbound_connections {
protocol = "tcp"
port_range_min = 80
port_range_max = 80
remote_cidr = "0.0.0.0/0"
}
outbound_connections {
protocol = "tcp"
port_range_min = 443
port_range_max = 443
remote_cidr = "0.0.0.0/0"
}
outbound_connections {
protocol = "tcp"
port_range_min = 443
port_range_max = 443
remote_cidr = "0.0.0.0/0"
}
}
}