Skip to content

Commit

Permalink
✏️ (docs): Fixes 'required' for a few inputs (#31)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
bendoerr and github-actions[bot] authored Dec 2, 2023
1 parent ff9704d commit 75f565c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ cloud provider you use.
| <a name="input_instance_short"></a> [instance_short](#input_instance_short) | Shortened version of the 'instance'.<br>Automatic shortening is done by removal of vowels. | `string` | `""` | no |
| <a name="input_namespace"></a> [namespace](#input_namespace) | Element to ensure resources are generated with names that are globally<br>unique and do not collide. This should be a short key such as initials. | `string` | n/a | yes |
| <a name="input_project"></a> [project](#input_project) | Unique identifier for this project | `string` | `""` | no |
| <a name="input_region"></a> [region](#input_region) | Key for the hosting provider region. | `string` | `""` | no |
| <a name="input_region"></a> [region](#input_region) | Key for the hosting provider region. | `string` | n/a | yes |
| <a name="input_region_short"></a> [region_short](#input_region_short) | Shortened version of the 'region'.<br>Automatic shortening is done by removal of vowels unless handled by special<br>cases such as 'us-east-1' => 'ue1', or 'us-west-2' => 'uw2'. | `string` | `""` | no |
| <a name="input_role"></a> [role](#input_role) | A simple name for the hosting provider account or workspace. Included in<br>tags to ensure that identification is simple across accounts. Examples<br>'production', 'development', 'main'. | `string` | `""` | no |
| <a name="input_role"></a> [role](#input_role) | A simple name for the hosting provider account or workspace. Included in<br>tags to ensure that identification is simple across accounts. Examples<br>'production', 'development', 'main'. | `string` | n/a | yes |
| <a name="input_role_short"></a> [role_short](#input_role_short) | Shortened version of the 'role'.<br>Automatic shortening is done by removal of vowels unless handled by special<br>cases such as 'production' => 'prod', or 'development' => 'dev'. | `string` | `""` | no |
| <a name="input_tags"></a> [tags](#input_tags) | Additional tags to include. | `map(string)` | `{}` | no |

Expand All @@ -126,12 +126,16 @@ cloud provider you use.

## Roadmap

[<img alt="GitHub issues" src="https://img.shields.io/github/issues/bendoerr-terraform-modules/terraform-null-context?logo=github">](https://github.com/bendoerr-terraform-modules/terraform-null-context/issues)

See the
[open issues](https://github.com/bendoerr-terraform-modules/terraform-null-context/issues)
for a list of proposed features (and known issues).

## Contributing

[<img alt="GitHub pull requests" src="https://img.shields.io/github/issues-pr/bendoerr-terraform-modules/terraform-null-context?logo=github">](https://github.com/bendoerr-terraform-modules/terraform-null-context/pulls)

Contributions are what make the open source community such an amazing place to
be learn, inspire, and create. Any contributions you make are **greatly
appreciated**.
Expand All @@ -153,12 +157,16 @@ appreciated**.

## License

[<img alt="GitHub License" src="https://img.shields.io/github/license/bendoerr-terraform-modules/terraform-null-context?logo=opensourceinitiative">](https://github.com/bendoerr-terraform-modules/terraform-null-context/blob/main/LICENSE.txt)

Distributed under the MIT License. See
[LICENSE](https://github.com/bendoerr-terraform-modules/terraform-null-context/blob/main/LICENSE.txt)
for more information.

## Authors

[<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/bendoerr-terraform-modules/terraform-null-context?logo=github">](https://github.com/bendoerr-terraform-modules/terraform-null-context/graphs/contributors)

- **Benjamin R. Doerr** - _Terraformer_ -
[Benjamin R. Doerr](https://github.com/bendoerr/) - _Built Ben's Terraform
Modules_
Expand Down
4 changes: 1 addition & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ variable "environment" {

variable "role" {
type = string
default = ""
description = <<-EOT
A simple name for the hosting provider account or workspace. Included in
tags to ensure that identification is simple across accounts. Examples
Expand All @@ -41,7 +40,6 @@ variable "role_short" {

variable "region" {
type = string
default = ""
description = <<-EOT
Key for the hosting provider region.
EOT
Expand Down Expand Up @@ -85,7 +83,7 @@ variable "project" {
description = <<-EOT
Unique identifier for this project
EOT
nullable = false
nullable = true
}

variable "attributes" {
Expand Down

0 comments on commit 75f565c

Please sign in to comment.