Skip to content

Commit 8ec123a

Browse files
committed
feat!: update to Debian 11
1 parent 0a0c13a commit 8ec123a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ done
212212
| vault\_allowed\_cidrs | List of CIDR blocks to allow access to the Vault nodes. Since the load balancer is a pass-through load balancer, this must also include all IPs from which you will access Vault. The default is unrestricted (any IP address can access Vault). It is recommended that you reduce this to a smaller list. | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
213213
| vault\_args | Additional command line arguments passed to Vault server | `string` | `""` | no |
214214
| vault\_ca\_cert\_filename | GCS object path within the vault\_tls\_bucket. This is the root CA certificate. | `string` | `"ca.crt"` | no |
215-
| vault\_instance\_base\_image | Base operating system image in which to install Vault. This must be a Debian-based system at the moment due to how the metadata startup script runs. | `string` | `"debian-cloud/debian-10"` | no |
215+
| vault\_instance\_base\_image | Base operating system image in which to install Vault. This must be a Debian-based system at the moment due to how the metadata startup script runs. | `string` | `"debian-cloud/debian-11"` | no |
216216
| vault\_instance\_labels | Labels to apply to the Vault instances. | `map(string)` | `{}` | no |
217217
| vault\_instance\_metadata | Additional metadata to add to the Vault instances. | `map(string)` | `{}` | no |
218218
| vault\_instance\_tags | Additional tags to apply to the instances. Note 'allow-ssh' and 'allow-vault' will be present on all instances. | `list(string)` | `[]` | no |

modules/cluster/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ module "vault_cluster" {
6060
| user\_vault\_config | Additional user-provided vault config added at the end of standard vault config | `string` | `""` | no |
6161
| vault\_args | Additional command line arguments passed to Vault server | `string` | `""` | no |
6262
| vault\_ca\_cert\_filename | GCS object path within the vault\_tls\_bucket. This is the root CA certificate. | `string` | `"ca.crt"` | no |
63-
| vault\_instance\_base\_image | Base operating system image in which to install Vault. This must be a Debian-based system at the moment due to how the metadata startup script runs. | `string` | `"debian-cloud/debian-10"` | no |
63+
| vault\_instance\_base\_image | Base operating system image in which to install Vault. This must be a Debian-based system at the moment due to how the metadata startup script runs. | `string` | `"debian-cloud/debian-11"` | no |
6464
| vault\_instance\_labels | Labels to apply to the Vault instances. | `map(string)` | `{}` | no |
6565
| vault\_instance\_metadata | Additional metadata to add to the Vault instances. | `map(string)` | `{}` | no |
6666
| vault\_instance\_tags | Additional tags to apply to the instances. Note 'allow-ssh' and 'allow-vault' will be present on all instances. | `list(string)` | `[]` | no |

modules/cluster/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ variable "vault_instance_metadata" {
156156

157157
variable "vault_instance_base_image" {
158158
type = string
159-
default = "debian-cloud/debian-10"
159+
default = "debian-cloud/debian-11"
160160

161161
description = "Base operating system image in which to install Vault. This must be a Debian-based system at the moment due to how the metadata startup script runs."
162162
}

variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ variable "vault_instance_metadata" {
385385

386386
variable "vault_instance_base_image" {
387387
type = string
388-
default = "debian-cloud/debian-10"
388+
default = "debian-cloud/debian-11"
389389

390390
description = "Base operating system image in which to install Vault. This must be a Debian-based system at the moment due to how the metadata startup script runs."
391391
}

0 commit comments

Comments
 (0)