From c38b3e81961a1183a207fc16aa08b57fdcb43f17 Mon Sep 17 00:00:00 2001 From: Dom G Date: Wed, 28 Jun 2023 15:53:17 -0400 Subject: [PATCH] Bump maven to 3.8.8 in terraform config (#264) --- contrib/terraform-testing-infrastructure/README.md | 4 ++-- contrib/terraform-testing-infrastructure/aws/variables.tf | 2 +- contrib/terraform-testing-infrastructure/azure/variables.tf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/terraform-testing-infrastructure/README.md b/contrib/terraform-testing-infrastructure/README.md index 8257f34f..40cd9888 100644 --- a/contrib/terraform-testing-infrastructure/README.md +++ b/contrib/terraform-testing-infrastructure/README.md @@ -169,7 +169,7 @@ The table below lists the variables and their default values that are used in th | instance\_count | The number of EC2 instances to create | `string` | `"2"` | no | | instance\_type | The type of EC2 instances to create | `string` | `"m5.2xlarge"` | no | | local\_sources\_dir | Directory on local machine that contains Maven, ZooKeeper or Hadoop binary distributions or Accumulo source tarball | `string` | `""` | no | -| maven\_version | The version of Maven to download and install | `string` | `"3.8.6"` | no | +| maven\_version | The version of Maven to download and install | `string` | `"3.8.8"` | no | | optional\_cloudinit\_config | An optional config block for the cloud-init script. If you set this, you should consider setting cloudinit\_merge\_type to handle merging with the default script as you need. | `string` | `null` | no | | private\_network | Indicates whether or not the user is on a private network and access to hosts should be through the private IP addresses rather than public ones. | `bool` | `false` | no | | root\_volume\_gb | The size, in GB, of the EC2 instance root volume | `string` | `"300"` | no | @@ -213,7 +213,7 @@ The table below lists the variables and their default values that are used in th | local\_sources\_dir | Directory on local machine that contains Maven, ZooKeeper or Hadoop binary distributions or Accumulo source tarball | `string` | `""` | no | | location | The Azure region where resources are to be created. If an existing resource group is specified, this value is ignored and the resource group's location is used. | `string` | n/a | yes | | managed\_disk\_configuration | Optional managed disk configuration. If supplied, the managed disks on each VM will be combined into an LVM volume mounted at the named mount point. |
object({
mount_point = string
disk_count = number
storage_account_type = string
disk_size_gb = number
})
| `null` | no | -| maven\_version | The version of Maven to download and install | `string` | `"3.8.6"` | no | +| maven\_version | The version of Maven to download and install | `string` | `"3.8.8"` | no | | network\_address\_space | The network address space to use for the virtual network. | `list(string)` |
[
"10.0.0.0/16"
]
| no | | optional\_cloudinit\_config | An optional config block for the cloud-init script. If you set this, you should consider setting cloudinit\_merge\_type to handle merging with the default script as you need. | `string` | `null` | no | | os\_disk\_caching | The type of caching to use for the OS disk. Possible values are None, ReadOnly, and ReadWrite. | `string` | `"ReadOnly"` | no | diff --git a/contrib/terraform-testing-infrastructure/aws/variables.tf b/contrib/terraform-testing-infrastructure/aws/variables.tf index 66d9ef04..31c4ee94 100644 --- a/contrib/terraform-testing-infrastructure/aws/variables.tf +++ b/contrib/terraform-testing-infrastructure/aws/variables.tf @@ -131,7 +131,7 @@ variable "accumulo_dir" { } variable "maven_version" { - default = "3.8.6" + default = "3.8.8" description = "The version of Maven to download and install" nullable = false } diff --git a/contrib/terraform-testing-infrastructure/azure/variables.tf b/contrib/terraform-testing-infrastructure/azure/variables.tf index 24ec7f12..c9969210 100644 --- a/contrib/terraform-testing-infrastructure/azure/variables.tf +++ b/contrib/terraform-testing-infrastructure/azure/variables.tf @@ -209,7 +209,7 @@ variable "accumulo_dir" { } variable "maven_version" { - default = "3.8.6" + default = "3.8.8" description = "The version of Maven to download and install" nullable = false }