Skip to content

Commit ae88275

Browse files
RoseSecurityMichael Rosenfeld
andauthored
Fix: Update Debian Image to 12 (#179)
Signed-off-by: Michael Rosenfeld <michael.rosenfeld@youversion.com> Co-authored-by: Michael Rosenfeld <michael.rosenfeld@youversion.com>
1 parent a7705b0 commit ae88275

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ If the user does not share the same domain as the org the bastion is in, you wil
8282
| fw\_name\_allow\_ssh\_from\_iap | Firewall rule name for allowing SSH from IAP | `string` | `"allow-ssh-from-iap-to-tunnel"` | no |
8383
| host\_project | The network host project ID | `string` | `""` | no |
8484
| image | Source image for the Bastion. If image is not specified, image\_family will be used (which is the default). | `string` | `""` | no |
85-
| image\_family | Source image family for the Bastion. | `string` | `"debian-11"` | no |
85+
| image\_family | Source image family for the Bastion. | `string` | `"debian-12"` | no |
8686
| image\_project | Project where the source image for the Bastion comes from | `string` | `"debian-cloud"` | no |
8787
| labels | Key-value map of labels to assign to the bastion host | `map(any)` | `{}` | no |
8888
| machine\_type | Instance type for the Bastion host | `string` | `"n1-standard-1"` | no |

metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ spec:
118118
- name: image_family
119119
description: Source image family for the Bastion.
120120
type: string
121-
default: debian-11
121+
default: debian-12
122122
required: false
123123
- name: image_project
124124
description: Project where the source image for the Bastion comes from

modules/bastion-group/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ provision a project with the necessary APIs enabled.
7878
| fw\_name\_allow\_ssh\_from\_iap | Firewall rule name for allowing SSH from IAP | `string` | `"allow-ssh-from-iap-to-bastion-group"` | no |
7979
| health\_check | Health check config for the mig. | <pre>object({<br> type = string<br> initial_delay_sec = number<br> check_interval_sec = number<br> healthy_threshold = number<br> timeout_sec = number<br> unhealthy_threshold = number<br> response = string<br> proxy_header = string<br> port = number<br> request = string<br> enable_logging = bool<br><br> # Unused fields.<br> request_path = string<br> host = string<br> })</pre> | <pre>{<br> "check_interval_sec": 30,<br> "enable_logging": false,<br> "healthy_threshold": 1,<br> "host": "",<br> "initial_delay_sec": 30,<br> "port": 22,<br> "proxy_header": "NONE",<br> "request": "",<br> "request_path": "",<br> "response": "",<br> "timeout_sec": 10,<br> "type": "tcp",<br> "unhealthy_threshold": 5<br>}</pre> | no |
8080
| host\_project | The network host project ID | `string` | `""` | no |
81-
| image\_family | Source image family for the Bastion. | `string` | `"debian-11"` | no |
81+
| image\_family | Source image family for the Bastion. | `string` | `"debian-12"` | no |
8282
| image\_project | Project where the source image for the Bastion comes from | `string` | `"debian-cloud"` | no |
8383
| labels | Key-value map of labels to assign to the bastion host | `map(any)` | `{}` | no |
8484
| machine\_type | Instance type for the Bastion host | `string` | `"n1-standard-1"` | no |

modules/bastion-group/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ spec:
103103
- name: image_family
104104
description: Source image family for the Bastion.
105105
type: string
106-
default: debian-11
106+
default: debian-12
107107
required: false
108108
- name: image_project
109109
description: Project where the source image for the Bastion comes from

modules/bastion-group/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ variable "target_size" {
2222
variable "image_family" {
2323
description = "Source image family for the Bastion."
2424
type = string
25-
default = "debian-11"
25+
default = "debian-12"
2626
}
2727

2828
variable "image_project" {

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ variable "image_family" {
2525
type = string
2626

2727
description = "Source image family for the Bastion."
28-
default = "debian-11"
28+
default = "debian-12"
2929
}
3030

3131
variable "image_project" {

0 commit comments

Comments
 (0)