infra-swarm/workspaces.tf

21 lines
448 B
Terraform
Raw Normal View History

2018-08-01 18:20:09 +00:00
/* 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 = {}
}
}
2018-08-01 18:20:09 +00:00
/*---------------------------------------------------------*/