Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.7
1.11.0
2 changes: 1 addition & 1 deletion terraform/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Create a file named `terraform.tfvars` with the mandatory variables, you can use this as an example:

```hcl
app_version = "1.10.7"
app_version = "1.11.0"
# Example for authentication using [email protected]
initial_admins = ["admin"]
principal_domain = "mycompany.com"
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/README_terraform_docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
| <a name="input_ECR_SECRET_KEY"></a> [ECR\_SECRET\_KEY](#input\_ECR\_SECRET\_KEY) | The Secret Key shared by Collate to pull Docker images from ECR. | `string` | n/a | yes |
| <a name="input_app_helm_chart_version"></a> [app\_helm\_chart\_version](#input\_app\_helm\_chart\_version) | The version of the OpenMetadata Helm chart to deploy. If not specified, the variable `app_version` will be used. | `string` | `null` | no |
| <a name="input_app_namespace"></a> [app\_namespace](#input\_app\_namespace) | Namespace to deploy the OpenMetadata application. | `string` | `"openmetadata"` | no |
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | The version of the OpenMetadata application to deploy. | `string` | `"1.10.7"` | no |
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | The version of the OpenMetadata application to deploy. | `string` | `"1.11.0"` | no |
| <a name="input_argowf_db_instance_class"></a> [argowf\_db\_instance\_class](#input\_argowf\_db\_instance\_class) | Argo Workflows database instance type. | `string` | `"db.t4g.micro"` | no |
| <a name="input_argowf_db_instance_name"></a> [argowf\_db\_instance\_name](#input\_argowf\_db\_instance\_name) | Name of the Argo Workflows database instance. | `string` | `"argowf"` | no |
| <a name="input_argowf_db_iops"></a> [argowf\_db\_iops](#input\_argowf\_db\_iops) | The amount of provisioned IOPS for Argo Workflows database. Setting this implies a db\_storage\_type of 'io1' or `gp3`. | `number` | `null` | no |
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ variable "vpc_id" {
variable "app_version" {
type = string
description = "The version of the OpenMetadata application to deploy."
default = "1.10.7"
default = "1.11.0"
}

variable "app_helm_chart_version" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/hybrid-ingestion-runner/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variable "region" {
variable "release_version" {
type = string
description = "The Hybrid Ingestion Runner version to deploy."
default = "1.10.7"
default = "1.11.0"
}

variable "namespace" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/hybrid-ingestion-runner/azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "location" {
variable "release_version" {
type = string
description = "The Hybrid Ingestion Runner version to deploy."
default = "1.10.7"
default = "1.11.0"
}

variable "namespace" {
Expand Down
Loading