Configuration Deprecations in v0.5
The release notes for v0.5.0 focus on a subset of configuration deprecations
We introduced a number of configuration deprecations in Consul-Terraform-Sync (CTS) v0.5. Many of these deprecations are part of an effort to streamline CTS task configuration and reduce the inconsistencies. As CTS support for more use-cases increased, inconsistencies arose and required a lot of documentation to explain.
This documentation outlines the deprecations and examples on how to upgrade your configuration for v0.5. The deprecated configurations will not be removed until v0.8 and later. We plan to also release a tool to automate upgrading your configurations to make the upgrade quicker and smoother.
Overview of Deprecations
The deprecations address two major inconsistencies. First is the use of the terminology "source" in various configuration blocks and fields. The second is the exception to configuring a task condition or a task module input by using the services
field and its related service
block.
Address "source" terminology
The word "source" is used in the name of a number of task configurations. "Source" in the configuration name commonly refers to the Terraform module though it is not immediately clear and requires additional documentation to explain.
We deprecated all configuration with the term "source" and replaced it with "module" in the task configuration:
Deprecated Config | Replacement Config | Description |
---|---|---|
source field | module field | The path to the Terraform module |
source_input block | module_input block | The configuration block to define the values for additional Terraform input variables for the Terraform module |
source_includes_var field | use_as_module_input field | The field on the condition block to indicate whether the values of the condition object should also be used as module input |
Removal date:
source
: future major release after v0.8source_input
: v0.8source_includes_var
: v0.8
The documentation below will refer to the deprecated configurations by their new name.
Address services
field and service
block
The services
field and its associated service
block are frequently an exception to task configuration use-cases and add complexity and restrictions.
The services
field is the only task condition that is not configured through the condition
block. It is also the only additional module input that is not configured through a module_input
block. This leads to a lot of inconsistent relationships with other condition
and module_input
blocks.
We deprecated the services
field and its associated service
filter to remove these exceptions and complicated relationship with other condition
and module_input
blocks:
Deprecated Config | Replacement Config | Description |
---|---|---|
services field | condition "services" or module_input "services" block | The services to provide module input and occasionally act as the task condition |
service block | fields moved into the condition "services" and module_input "services" block | The configuration block to provide additional filtering on the services in the services field |
The services
field and its associated service
block will be removed in a future major release after v0.8.
Further Details on Deprecations
Deprecate source
field
The source
field in the task configuration is deprecated and can be directly renamed to module
.
Example:
Deprecate source_input
block
The source_input
block in the task configuration is deprecated and can be directly renamed to module_input
.
Example:
Deprecate source_includes_var
field
The condition
block's source_includes_var
field is deprecated for all types of conditions and can be directly renamed to use_as_module_input
.
Example:
Deprecate services
field
The services
field can play different roles in a task depending on other task configurations:
- When no
condition
block is configured, then theservices
field is the task's condition and module input - When there is a
condition
block configured, then the `services field is only module input for the task
The services
field can be replaced depending on the role it has for the task.
Deprecate services
field as a condition
When the services
field behaves as a condition, it can be replaced with a condition "services"
block with the names
field set to the list of the services.
Example:
Deprecate services
field as module input only
When the services
field only provides module input, it can be replaced with a module_input "services"
block with the names
field set to the list of the services.
Example:
Note: use_as_module_input
was updated in v0.5 so that it will default to true
when unconfigured. In the new configuration, the line to set use_as_module_input = true
is no longer necessary
Deprecate service block
The service
block is a configuration block outside of the task block. The fields of the service
block provides additional filtering to any task that has that service set in the services
field.
Once the services
field is upgraded to a condition
or module_input
block, as described in the section above, the deprecated service
block's fields can be moved to the new condition
or module_input
block.
Example:
There is an edge-case that requires a more complicated deprecation upgrade. Some tasks may have multiple services in the services
field and a service
block configured for each of those services. When the fields are different across the service
blocks, it is necessary to split the task and create new, separate tasks for each service.
Example: