60 lines
1.9 KiB
HCL
60 lines
1.9 KiB
HCL
|
run "two_tier" {
|
||
|
module {
|
||
|
source = "./tests/module"
|
||
|
}
|
||
|
|
||
|
variables {
|
||
|
project_domain = "default"
|
||
|
project_tags = ["cloud", "test", "tofu"]
|
||
|
architecture_tiers = 1
|
||
|
create_application_subnetpool = true
|
||
|
application_subnetpool_cidr_blocks = ["10.10.128.0/17"]
|
||
|
create_database_subnetpool = false
|
||
|
frontend_subnet_prefix_len = 24
|
||
|
public_nameservers = ["9.9.9.9", "9.9.9.10"]
|
||
|
create_default_secgroups = true
|
||
|
database_secgroup_strict = false
|
||
|
attach_to_external = true
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = alltrue([for i in module.landing_zone.apps_subnetpool[0].prefixes : can(cidrhost(i, 0))])
|
||
|
error_message = "The application subnetpool does not seem correct"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = module.landing_zone.database_subnetpool == null
|
||
|
error_message = "The database subnetpool is not null"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = can(regex("^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", module.landing_zone.frontend_network[0].id))
|
||
|
error_message = "The frontend network was not created successfully"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = module.landing_zone.backend_network == null
|
||
|
error_message = "The backend network is not null"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = module.landing_zone.database_network == null
|
||
|
error_message = "The database network is not null"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = can(regex("^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", module.landing_zone.frontend_subnet[0].id))
|
||
|
error_message = "The frontend subnet was not created successfully"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = module.landing_zone.backend_subnet == null
|
||
|
error_message = "The backend subnet is not null"
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
condition = module.landing_zone.database_subnet == null
|
||
|
error_message = "The database subnet is not null"
|
||
|
}
|
||
|
}
|