depends_on
count
use count if your instances are almost identical
Cannot use count and for_each for a given resource
resource "aws_instance" "server" { count = 4 # create four similar EC2 instances ami = "ami-a1b2c3d4" instance_type = "t2.micro" tags = { Name = "Server ${count.index}" } }
for_each
resource "azurerm_resource_group" "rg" { for_each = { a_group = "eastus" another_group = "westus2" } name = each.key location = each.value }
variable "image_id" { type = string description = "The id of the machine image (AMI) to use for the server." }
variable "mytype" { type = string description = "The type of instance to create" } resource "aws_instance" "example" { ami = "ami-0817d428a6fb68645" instance_type = var.mytype }
The previous example will prompt for the variable value at runtime. You can also:
terraform apply -var="mytype=t2.micro"
terraform apply -var-file="foo.tfvars"
export TF_VAR_mytype=t2.micro
Only rendered when tf applies your plan.
Are like a function return values
output "instance_ip_addr" { value = aws_instance.server.private_ip }
Or is it terraform HCP?