mirror of
https://github.com/ghndrx/tf-variable-demo.git
synced 2026-02-10 06:54:57 +00:00
10 lines
260 B
HCL
10 lines
260 B
HCL
resource "google_compute_instance_group_manager" "instance_group" {
|
|
name = "instance-group"
|
|
project = var.project_id
|
|
region = var.region
|
|
base_instance_name = "instance"
|
|
instance_template = var.template_self_link
|
|
target_size = 2
|
|
}
|
|
|