Skip to content

Commit 70c082c

Browse files
authored
Fix unknown type boolean (#51)
* Fix unknown type boolean * terraform-docs: automated update action --------- Co-authored-by: adenot <adenot@users.noreply.github.com>
1 parent f0e0736 commit 70c082c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module "network" {
5757

5858
| Name | Description | Type | Default | Required |
5959
|------|-------------|------|---------|:--------:|
60-
| attachInternetGateway | To attach or not the internet gateway within the public subnet. | `boolean` | `true` | no |
60+
| attachInternetGateway | To attach or not the internet gateway within the public subnet. | `bool` | `true` | no |
6161
| byoip | Enable module to use your own Elastic IPs (Bring Your Own IP) | `bool` | `false` | no |
6262
| cf\_export\_name | Name prefix for the export resources of the cloud formation output | `string` | `""` | no |
6363
| eip\_allocation\_ids | User-specified primary or secondary private IP address to associate with the Elastic IP address | `list(string)` | `[]` | no |

_variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ variable "kms_key_arn" {
326326
}
327327

328328
variable "attachInternetGateway" {
329-
type = boolean
329+
type = bool
330330
default = true
331331
description = "To attach or not the internet gateway within the public subnet."
332332
}

0 commit comments

Comments
 (0)