Terraform functions
- Terraform offers functions
Terraform meta argument count
- Refer Here for count which helps in creating multiple resources.
- Refer Here for the changes done to create multiple resources based on variables passed using count function
Terraform expressions
Terraform conditional creation of resources
- We can use count to do this
resource 'xxxxx' 'yy' {
count = 0
}
- Refer Here for the changes done.
Terraform locals
- Refer Here for official docs
- Refer Here for changes
Terraform outputs
- Refer Here
- Refer Here for the changes done

Terraform block
- Refer Here for official docs of terraform block
- Versioning constraints
