Tag: Configuration Management

Browse all articles, tutorials, and guides about Configuration Management

Guides

Posts

Terraform
2025-02-05|5 min read

Conditional Attributes in Terraform

Learn how to use conditional expressions to dynamically set resource attributes in Terraform.

Terraform
2025-01-30|6 min read

Managing Different Environments in Terraform

Learn how to manage different environments in Terraform using workspaces, variable files, and directory structures.

Terraform
2025-01-22|8 min read

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
2025-01-20|5 min read

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.

Terraform
2025-01-10|5 min read

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.

Terraform
2024-12-09|5 min read

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.

Terraform
2024-12-01|7 min read

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.

Terraform
2024-11-01|5 min read

Variables Within Variables in Terraform

Learn how to use variables within variables in Terraform to create dynamic and reusable configurations.

Terraform
2024-07-24|5 min read

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.