Skip to content

Commit e2267a9

Browse files
committed
fix(composer): default composer image version
As of now, v3 is currently not supported by integration tests in the CI
1 parent 5b70e81 commit e2267a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/create_environment_v2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ module "simple-composer-environment" {
8181
| env\_variables | Variables of the airflow environment. | `map(string)` | `{}` | no |
8282
| environment\_size | The environment size controls the performance parameters of the managed Cloud Composer infrastructure that includes the Airflow database. Values for environment size are: `ENVIRONMENT_SIZE_SMALL`, `ENVIRONMENT_SIZE_MEDIUM`, and `ENVIRONMENT_SIZE_LARGE`. | `string` | `"ENVIRONMENT_SIZE_MEDIUM"` | no |
8383
| grant\_sa\_agent\_permission | Cloud Composer relies on Workload Identity as Google API authentication mechanism for Airflow. | `bool` | `true` | no |
84-
| image\_version | The version of the aiflow running in the cloud composer environment. | `string` | `"composer-3-airflow-2.10.2"` | no |
84+
| image\_version | The version of the aiflow running in the cloud composer environment. | `string` | `"composer-2.10.2-airflow-2.10.2"` | no |
8585
| kms\_key\_name | Customer-managed Encryption Key fully qualified resource name, i.e. projects/project-id/locations/location/keyRings/keyring/cryptoKeys/key. | `string` | `null` | no |
8686
| labels | The resource labels (a map of key/value pairs) to be applied to the Cloud Composer. | `map(string)` | `{}` | no |
8787
| maintenance\_end\_time | Time window specified for recurring maintenance operations in RFC3339 format | `string` | `null` | no |

modules/create_environment_v2/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ variable "env_variables" {
103103
variable "image_version" {
104104
type = string
105105
description = "The version of the aiflow running in the cloud composer environment."
106-
default = "composer-3-airflow-2.10.2"
106+
default = "composer-2.10.2-airflow-2.10.2"
107107
}
108108

109109
variable "pypi_packages" {

0 commit comments

Comments
 (0)