Skip to content

Commit

Permalink
fix: Update variables.tf to correct minor typos (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumar-dhanagopal committed Jan 12, 2023
1 parent 6a096b6 commit 2e9463e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ Functional examples are included in the
| deployment\_name | The name of this particular deployment, will get added as a prefix to most resources. | `string` | `"load-balanced-vms"` | no |
| enable\_apis | Whether or not to enable underlying apis in this solution. . | `string` | `true` | no |
| labels | A map of labels to apply to contained resources. | `map(string)` | <pre>{<br> "load-balanced-vms": true<br>}</pre> | no |
| nodes | The number of nodes in the manged instance group | `string` | n/a | yes |
| nodes | The number of nodes in the managed instance group | `string` | n/a | yes |
| project\_id | The project ID to deploy to | `string` | n/a | yes |
| region | The Compute Region to deploy to | `string` | n/a | yes |
| zone | The Compute Zonbe to deploy to | `string` | n/a | yes |
| zone | The Compute Zone to deploy to | `string` | n/a | yes |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion examples/simple_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example illustrates how to use the `load-balanced-vms` module.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| deployment\_name | Deployment name | `string` | `"deployment_name"` | no |
| deployment\_name | Deployment name | `string` | `"load-balanced-vms"` | no |
| project\_id | The project ID to deploy to | `string` | n/a | yes |

## Outputs
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ variable "region" {

variable "zone" {
type = string
description = "The Compute Zonbe to deploy to"
description = "The Compute Zone to deploy to"
}

variable "nodes" {
type = string
description = "The number of nodes in the manged instance group"
description = "The number of nodes in the managed instance group"
}

variable "deployment_name" {
Expand Down

0 comments on commit 2e9463e

Please sign in to comment.