Skip to main content

All Questions

Tagged with
0 votes
0 answers
61 views

Seeking Expert Advice on Terraform Deployment Cleanup

I've been successfully using Terraform for various deployments, managing to create multiple environments for different clients using a single Jenkins job. However, I've hit a roadblock when it comes ...
Yousuf's user avatar
  • 45
0 votes
1 answer
208 views

Importing in terraform

So i want t import an application load balancer under the terraform management, i managed to add some of it's attributes like cross-region and delete protection, global accelerator etc, and i imported,...
logax's user avatar
  • 139
0 votes
1 answer
77 views

is there any deployment automation software that can create an encrypted vm in esxi?

I recently felt the need to encrypt my esxi vms and tried to find some way to do it with terraform but couldn't find an option for that in the documentation so I looked into ansible , chef with no ...
Non Fungible Person's user avatar
0 votes
1 answer
2k views

random_pet in Terraform: Error: Cycle:

I am trying to generate random hostnames for a couple of servers. However when running terraform apply I get an error message "Error: Cycle: random_pet.swm01_managers, hcloud_server.swm01_managers" ...
Rick McClatchie's user avatar
0 votes
2 answers
562 views

Terraform-use same tf file for multiple deployment?

resource "aws_instance" "win-example" { ami = "${lookup(var.WIN_AMIS, var.AWS_REGION)}" instance_type = "t2.medium" count="${var.count}" vpc_security_group_ids = ["${var.security_group_id}"] ...
Milister's user avatar
  • 173