Skip to content

Commit

Permalink
Update centos image family name to be centos-stream-9
Browse files Browse the repository at this point in the history
  • Loading branch information
tgscat committed Mar 9, 2022
1 parent 0e2a86b commit eceff84
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,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` | `"centos-8"` | no |
| image\_family | Source image family for the Bastion. | `string` | `"centos-stream-9"` | no |
| image\_project | Project where the source image for the Bastion comes from | `string` | `"centos-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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,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><br> # Unused fields.<br> request_path = string<br> host = string<br> })</pre> | <pre>{<br> "check_interval_sec": 30,<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` | `"centos-7"` | no |
| image\_family | Source image family for the Bastion. | `string` | `"centos-stream-9"` | no |
| image\_project | Project where the source image for the Bastion comes from | `string` | `"gce-uefi-images"` | 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/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "target_size" {

variable "image_family" {
description = "Source image family for the Bastion."
default = "centos-7"
default = "centos-stream-9"
}

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 = "centos-8"
default = "centos-stream-9"
}

variable "image_project" {
Expand Down

0 comments on commit eceff84

Please sign in to comment.