We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setting up the latest tack cluster it seems the workers are all created in one availability zone!
how do i spread these?
The text was updated successfully, but these errors were encountered:
Something like this:
modules/worker/ec2.tf @@ -1,4 +1,5 @@ resource "aws_launch_configuration" "worker" { + availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c"] ebs_block_device { device_name = "/dev/xvdf" volume_size = "${ var.volume_size["ebs"] }"
More info: https://www.terraform.io/docs/providers/aws/d/availability_zones.html
Sorry, something went wrong.
like this:
https://github.com/kz8s/tack/pull/182/files
No branches or pull requests
setting up the latest tack cluster it seems the workers are all created in one availability zone!
how do i spread these?
The text was updated successfully, but these errors were encountered: