Skip to content

Commit

Permalink
Make example instance type in variable description match default value
Browse files Browse the repository at this point in the history
Co-authored-by: David Redmin <[email protected]>
  • Loading branch information
jsf9k and dav3r committed Nov 13, 2024
1 parent 6575c9f commit 66f8478
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module "example" {
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| ami\_owner\_account\_id | The ID of the AWS account that owns the OpenVPN AMI, or "self" if the AMI is owned by the same account as the provisioner. | `string` | `"self"` | no |
| aws\_instance\_type | The AWS instance type to deploy (e.g. t4g.medium). | `string` | `"t4g.small"` | no |
| aws\_instance\_type | The AWS instance type to deploy (e.g. t4g.small). | `string` | `"t4g.small"` | no |
| cert\_bucket\_name | The name of a bucket that stores certificates (e.g. my-certs). | `string` | n/a | yes |
| cert\_read\_role\_accounts\_allowed | A list of accounts allowed to access the role that can read certificates from an S3 bucket. | `list(string)` | `[]` | no |
| client\_dns\_search\_domain | The DNS search domain to be pushed to VPN clients. | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ variable "ami_owner_account_id" {

variable "aws_instance_type" {
default = "t4g.small"
description = "The AWS instance type to deploy (e.g. t4g.medium)."
description = "The AWS instance type to deploy (e.g. t4g.small)."
nullable = false
type = string
}
Expand Down

0 comments on commit 66f8478

Please sign in to comment.