Mar 17, 2025
.tfv
or .tf
.variables.tf
, variables.tfi
.variables.tfi
files.Franchesca.tfvars
, Victor.tfvars
)..tfvars
files to pass different values suitable for each environment..tfvars
file.var.<variable_name>
..tfvars
Filesterraform plan
with -var-file=<file>
to specify which .tfvars
file to use..tfvars
for each (e.g., prod.tfvars
, dev.tfvars
).terraform init
: Initializes the directory.terraform plan
: Checks what infrastructure changes will be made.terraform apply
: Applies the changes to provision resources..tfvars
files streamline managing different environments.