22 lines
409 B
HCL
22 lines
409 B
HCL
|
locals {
|
||
|
ServiceHarbor = {
|
||
|
ConfigFiles = [
|
||
|
{
|
||
|
destination = "/etc/harbor/harbor.yaml"
|
||
|
source = "habor.yaml.pktpl.hcl"
|
||
|
mod = "600"
|
||
|
}
|
||
|
]
|
||
|
AuthEnabled = false
|
||
|
User = "harbor"
|
||
|
Group = "harbor"
|
||
|
HarborDomain = "reg.cadoles.com"
|
||
|
}
|
||
|
Harbor = {
|
||
|
Name = "harbor"
|
||
|
Globals = local.Globals
|
||
|
Services = {
|
||
|
Harbor = local.ServiceHarbor
|
||
|
}
|
||
|
}
|
||
|
}
|