skip to Main Content

Redis – Cannot destroy one module using Terraform destroy

I have created a few instances using Terraform module: resource "google_compute_instance" "cluster" { count = var.num_instances name = "redis-${format("%03d", count.index)}" ... attached_disk { source = google_compute_disk.ssd[count.index].name } } resource "google_compute_disk" "ssd" { count = var.num_instances name = "redis-ssd-${format("%03d", count.index)}" ...…

VIEW QUESTION
Back To Top
Search