Tag: Configuration Management
Browse all articles, tutorials, and guides about Configuration Management
Posts
Conditional Attributes in Terraform
Learn how to use conditional expressions to dynamically set resource attributes in Terraform.
Managing Different Environments in Terraform
Learn how to manage different environments in Terraform using workspaces, variable files, and directory structures.
Conditional Resource Creation in Terraform Based on .tfvars Variables
Learn how to conditionally create Terraform resources using variables from .tfvars files. Learn count, for_each, and dynamic blocks for flexible infrastructure.
terraform.tfvars vs variables.tf: What is the Difference?
Understand the difference between terraform.tfvars and variables.tf in Terraform and how to use them effectively.
How to Load Input Data from a File in Terraform
Learn how to load input data from a file in Terraform using the `file` function and external data sources.
How to Ignore Change of an Attribute in Terraform Blocks
Learn how to use the `lifecycle` block with the `ignore_changes` argument to ignore changes to specific attributes in Terraform.
How to Split a Terraform File (main.tf) into Several Files (No Modules)
Organizing Terraform configurations by splitting a single main.tf file into multiple files can improve readability and maintainability. Learn how to do this without using modules.
Variables Within Variables in Terraform
Learn how to use variables within variables in Terraform to create dynamic and reusable configurations.
Getting an Environment Variable in Terraform Configuration
Learn how to retrieve and use environment variables in Terraform configurations using the `env` function and input variables.