Override Files - Configuration Language | Terraform | HashiCorp Developer - 0 views
-
the overriding effect is compounded, with later blocks taking precedence over earlier blocks.
-
Terraform has special handling of any configuration file whose name ends in _override.tf or _override.tf.json. This special handling also applies to a file named literally override.tf or override.tf.json.Terraform initially skips these override files when loading configuration, and then afterwards processes each one in turn (in lexicographical order).
-
If the original block defines a default value and an override block changes the variable's type, Terraform attempts to convert the default value to the overridden type, producing an error if this conversion is not possible.
- ...1 more annotation...