diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f721b2..53625b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## 0.2.12 + +Released August 21st, 2023. + +### Fixed + +- Fixed misconfiguration in `AzureContainerWorker` base job template where `subnet_ids` and `dns_servers` were not included in the default base hob template variables - [#113](https://github.com/PrefectHQ/prefect-azure/pull/113/files) + ## 0.2.11 Released July 20th, 2023. diff --git a/prefect_azure/workers/container_instance.py b/prefect_azure/workers/container_instance.py index 9a3a467..cd95de3 100644 --- a/prefect_azure/workers/container_instance.py +++ b/prefect_azure/workers/container_instance.py @@ -471,6 +471,16 @@ class AzureContainerVariables(BaseVariables): "on the task definition." ), ) + subnet_ids: Optional[List[str]] = Field( + title="Subnet IDs", + default=None, + description=("A list of subnet IDs to associate with the container group. "), + ) + dns_servers: Optional[List[str]] = Field( + title="DNS Servers", + default=None, + description=("A list of DNS servers to associate with the container group."), + ) aci_credentials: AzureContainerInstanceCredentials = Field( default_factory=AzureContainerInstanceCredentials, description=("The credentials to use to authenticate with Azure."),