mirror of
https://github.com/status-im/infra-swarm.git
synced 2025-02-22 20:38:18 +00:00
21 lines
448 B
HCL
21 lines
448 B
HCL
/* WORKSPACES ---------------------------------------------*/
|
|
/**
|
|
* This is a hacky way of binding specific variable
|
|
* values to different Terraform workspaces.
|
|
*
|
|
* Details:
|
|
* https://github.com/hashicorp/terraform/issues/15966
|
|
*/
|
|
|
|
locals {
|
|
env = {
|
|
defaults = {
|
|
hosts_count = 1
|
|
}
|
|
|
|
# For testing infra changes before rollout to other fleets
|
|
test = {}
|
|
}
|
|
}
|
|
/*---------------------------------------------------------*/
|