Skip to content

Commit

Permalink
Update Debian Image to 12
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Rosenfeld <[email protected]>
  • Loading branch information
Michael Rosenfeld committed Jan 25, 2024
1 parent 3c2a66f commit ebb31a1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ If the user does not share the same domain as the org the bastion is in, you wil
| fw\_name\_allow\_ssh\_from\_iap | Firewall rule name for allowing SSH from IAP | `string` | `"allow-ssh-from-iap-to-tunnel"` | no |
| host\_project | The network host project ID | `string` | `""` | no |
| image | Source image for the Bastion. If image is not specified, image\_family will be used (which is the default). | `string` | `""` | no |
| image\_family | Source image family for the Bastion. | `string` | `"debian-11"` | no |
| image\_family | Source image family for the Bastion. | `string` | `"debian-12"` | no |
| image\_project | Project where the source image for the Bastion comes from | `string` | `"debian-cloud"` | no |
| labels | Key-value map of labels to assign to the bastion host | `map(any)` | `{}` | no |
| machine\_type | Instance type for the Bastion host | `string` | `"n1-standard-1"` | no |
Expand Down
2 changes: 1 addition & 1 deletion metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ spec:
- name: image_family
description: Source image family for the Bastion.
type: string
default: debian-11
default: debian-12
required: false
- name: image_project
description: Project where the source image for the Bastion comes from
Expand Down
2 changes: 1 addition & 1 deletion modules/bastion-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ provision a project with the necessary APIs enabled.
| fw\_name\_allow\_ssh\_from\_iap | Firewall rule name for allowing SSH from IAP | `string` | `"allow-ssh-from-iap-to-bastion-group"` | no |
| 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 |
| host\_project | The network host project ID | `string` | `""` | no |
| image\_family | Source image family for the Bastion. | `string` | `"debian-11"` | no |
| image\_family | Source image family for the Bastion. | `string` | `"debian-12"` | no |
| image\_project | Project where the source image for the Bastion comes from | `string` | `"debian-cloud"` | no |
| labels | Key-value map of labels to assign to the bastion host | `map(any)` | `{}` | no |
| machine\_type | Instance type for the Bastion host | `string` | `"n1-standard-1"` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/bastion-group/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ spec:
- name: image_family
description: Source image family for the Bastion.
type: string
default: debian-11
default: debian-12
required: false
- name: image_project
description: Project where the source image for the Bastion comes from
Expand Down
2 changes: 1 addition & 1 deletion modules/bastion-group/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "target_size" {
variable "image_family" {
description = "Source image family for the Bastion."
type = string
default = "debian-11"
default = "debian-12"
}

variable "image_project" {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "image_family" {
type = string

description = "Source image family for the Bastion."
default = "debian-11"
default = "debian-12"
}

variable "image_project" {
Expand Down

0 comments on commit ebb31a1

Please sign in to comment.