Guest User

Untitled

a guest
May 24th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. variable "instance_type" {
  2. type = "map"
  3.  
  4. default = {
  5. test = "m4.large"
  6. uat = "m4.large"
  7. prod = "m4.xlarge"
  8. }
  9. }
  10. // <...>
  11.  
  12. module "ecs_cluster" {
  13. // <...>
  14. instance_type = "${lookup(var.instance_type, terraform.workspace)}"
  15. }
Add Comment
Please, Sign In to add comment