Skip to content

Commit

Permalink
update shape
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oehrli committed Oct 15, 2020
1 parent b19d840 commit 2b43e55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Variables for the configuration of the terraform module, defined in [variables](
| `bastion_name` | A Name portion of bastion host. | | bastion |
| `bastion_os` | Base OS for the bastion host. This is used to identify the default `bastion_image_id` | | Oracle Linux |
| `bastion_os_version` | Base OS version for the bastion host. This is used to identify the default `bastion_image_id` | | 7.8 |
| `bastion_shape` | The shape of bastion instance. | | VM.Standard2.1 |
| `bastion_shape` | The shape of bastion instance. | | VM.Standard.E2.1 |
| `bastion_state` | Whether bastion host should be either RUNNING or STOPPED state. | RUNNING / STOPPED | RUNNING |
| `bastion_boot_volume_size` | Size of the boot volume. | | 50 |
| `bastion_subnet` | List of subnets for the bastion hosts | | n/a |
Expand Down
2 changes: 1 addition & 1 deletion examples/terraform.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ bastion_dns_registration = false
bastion_name = "bastion"
bastion_image_id = "OEL"
bastion_os_version = "7.8"
bastion_shape = "VM.Standard2.1"
bastion_shape = "VM.Standard.E2.1"
bastion_boot_volume_size = 50
bastion_state = "RUNNING"
bastion_bootstrap = ""
Expand Down
2 changes: 1 addition & 1 deletion examples/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ variable "bastion_os_version" {

variable "bastion_shape" {
description = "The shape of bastion instance."
default = "VM.Standard2.1"
default = "VM.Standard.E2.1"
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ variable "bastion_os_version" {

variable "bastion_shape" {
description = "The shape of bastion instance."
default = "VM.Standard2.1"
default = "VM.Standard.E2.1"
type = string
}

Expand Down

0 comments on commit 2b43e55

Please sign in to comment.