Skip to content

Commit

Permalink
Fix unknown type boolean (#51)
Browse files Browse the repository at this point in the history
* Fix unknown type boolean

* terraform-docs: automated update action

---------

Co-authored-by: adenot <[email protected]>
  • Loading branch information
adenot and adenot authored Jul 16, 2024
1 parent f0e0736 commit 70c082c
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 @@ -57,7 +57,7 @@ module "network" {

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| attachInternetGateway | To attach or not the internet gateway within the public subnet. | `boolean` | `true` | no |
| attachInternetGateway | To attach or not the internet gateway within the public subnet. | `bool` | `true` | no |
| byoip | Enable module to use your own Elastic IPs (Bring Your Own IP) | `bool` | `false` | no |
| cf\_export\_name | Name prefix for the export resources of the cloud formation output | `string` | `""` | no |
| eip\_allocation\_ids | User-specified primary or secondary private IP address to associate with the Elastic IP address | `list(string)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion _variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ variable "kms_key_arn" {
}

variable "attachInternetGateway" {
type = boolean
type = bool
default = true
description = "To attach or not the internet gateway within the public subnet."
}

0 comments on commit 70c082c

Please sign in to comment.