36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
|
|
# | Server defaults contracts (schema definitions)
|
||
|
|
# | Migrated from: provisioning/kcl/defaults.k
|
||
|
|
# | Pattern: Pure schema definitions using Nickel contracts
|
||
|
|
|
||
|
|
{
|
||
|
|
ServerDefaults = {
|
||
|
|
lock | Bool,
|
||
|
|
time_zone | String,
|
||
|
|
running_wait | Number,
|
||
|
|
running_timeout | Number,
|
||
|
|
storage_os_find | String,
|
||
|
|
network_utility_ipv4 | Bool,
|
||
|
|
network_utility_ipv6 | Bool,
|
||
|
|
network_public_ipv4 | Bool,
|
||
|
|
network_public_ipv6 | Bool,
|
||
|
|
labels | String,
|
||
|
|
user | String,
|
||
|
|
user_home | String,
|
||
|
|
user_ssh_port | Number,
|
||
|
|
fix_local_hosts | Bool,
|
||
|
|
installer_user | String,
|
||
|
|
priv_cidr_block | String | optional,
|
||
|
|
ssh_key_path | String | optional,
|
||
|
|
ssh_key_name | String | optional,
|
||
|
|
network_public_ip | String | optional,
|
||
|
|
network_private_name | String | optional,
|
||
|
|
network_private_id | String | optional,
|
||
|
|
primary_dns | String | optional,
|
||
|
|
secondary_dns | String | optional,
|
||
|
|
main_domain | String | optional,
|
||
|
|
domains_search | String | optional,
|
||
|
|
user_ssh_key_path | String | optional,
|
||
|
|
scale | Dyn | optional,
|
||
|
|
},
|
||
|
|
}
|