@thomas.solbjor her er "import" av tofu fra ditt repo med justeringer for å tilpasse patterns her. Også minimalisert til å kun opprette cluster, ingen managed services som postgres etc. Ta en titt. Co-authored-by: Danijel Simeunovic <danijel.simeunovic@fortedigital.com> Reviewed-on: #15 Reviewed-by: Danijel Simeunovic <danijel.simeunovic@fortedigital.com> Co-authored-by: Ghost <> Co-committed-by: Ghost <>
19 lines
368 B
HCL
19 lines
368 B
HCL
module "cluster" {
|
|
source = "../modules/cluster"
|
|
|
|
prefix = "clst"
|
|
location = "westeurope"
|
|
resource_group_name = "clst-prod-rg"
|
|
|
|
# AKS — general-purpose nodes for production
|
|
aks_node_vm_size = "Standard_D4s_v3"
|
|
aks_node_count = 3
|
|
|
|
enable_delete_lock = true
|
|
|
|
tags = {
|
|
Environment = "prod"
|
|
ManagedBy = "tofu"
|
|
}
|
|
}
|