This commit systematically updates all Terraform configurations, including resources, variables, and labels, to use the more generic `app` designation instead of `swarm`. This improves consistency and decouples the infrastructure naming from a specific container orchestration technology like Docker Swarm.
14 lines
311 B
HCL
14 lines
311 B
HCL
locals {
|
|
environment = "test"
|
|
hcloud_project = "iklim_test"
|
|
name_prefix = "iklim-test"
|
|
|
|
app_private_ip = "10.10.10.11"
|
|
db_private_ip = "10.10.20.11"
|
|
|
|
network_zone = "eu-central"
|
|
network_cidr = "10.10.0.0/16"
|
|
app_subnet_cidr = "10.10.10.0/24"
|
|
db_subnet_cidr = "10.10.20.0/24"
|
|
}
|