Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcurtis committed Jul 21, 2024
1 parent 9e447db commit c7a7de0
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 @@ -88,7 +88,7 @@ terraform test
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| name | Name of the network to create | `string` | `"osinfra-vpc"` | no |
| project | The ID of the project in which the resource belongs | `any` | n/a | yes |
| project | The ID of the project in which the resource belongs | `string` | n/a | yes |
| rules | List of firewall rule definitions | ```list(object({ allow = optional(list(object({ ports = list(string) protocol = string })), []) deny = optional(list(object({ ports = list(string) protocol = string })), []) description = optional(string) direction = string log_config_enabled = optional(bool, true) log_config_metadata = optional(string, "INCLUDE_ALL_METADATA") name = string priority = optional(number) ranges = optional(list(string)) source_tags = optional(list(string)) target_tags = optional(list(string)) }))``` | `[]` | no |
| shared\_vpc | Enable VPC sharing | `bool` | `false` | no |
| shared\_vpc\_service\_projects | The set of service projects to attach to the shared VPC | `set(string)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "name" {

variable "project" {
description = "The ID of the project in which the resource belongs"
type = string
type = string
}

variable "rules" {
Expand Down

0 comments on commit c7a7de0

Please sign in to comment.