Skip to content

Commit

Permalink
var.organization may be null
Browse files Browse the repository at this point in the history
  • Loading branch information
strebitz committed Dec 22, 2024
1 parent f9a5107 commit bf918be
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.0.1] - 2024-12-22

BUG FIXES:
* `var.organization` may be `null`

## [2.0.0] - 2024-08-30

BREAKING CHANGES:
Expand All @@ -13,6 +18,7 @@ BREAKING CHANGES:

Initial release

[Unreleased]: https://github.com/nephosolutions/terraform-tfe-variable-set/compare/v2.0.0...HEAD
[Unreleased]: https://github.com/nephosolutions/terraform-tfe-variable-set/compare/v2.0.1...HEAD
[2.0.1]: https://github.com/nephosolutions/terraform-tfe-variable-set/releases/tag/v2.0.1
[2.0.0]: https://github.com/nephosolutions/terraform-tfe-variable-set/releases/tag/v2.0.0
[1.0.0]: https://github.com/nephosolutions/terraform-tfe-variable-set/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion modules/variable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ No modules.
| <a name="input_description"></a> [description](#input\_description) | Description of the variable. | `string` | `null` | no |
| <a name="input_hcl"></a> [hcl](#input\_hcl) | Whether to evaluate the value of the variable as a string of HCL code. | `bool` | `false` | no |
| <a name="input_key"></a> [key](#input\_key) | Name of the variable. | `string` | n/a | yes |
| <a name="input_organization"></a> [organization](#input\_organization) | The name of the organization. | `string` | n/a | yes |
| <a name="input_organization"></a> [organization](#input\_organization) | The name of the organization. | `string` | `null` | no |
| <a name="input_sensitive"></a> [sensitive](#input\_sensitive) | Whether the value is sensitive. If true then the variable is written once and not visible thereafter. | `bool` | `false` | no |
| <a name="input_value"></a> [value](#input\_value) | The workspace output to read the variable value from. | `string` | n/a | yes |
| <a name="input_variable_set_id"></a> [variable\_set\_id](#input\_variable\_set\_id) | ID of the variable set that owns the variable. | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion modules/variable/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ variable "key" {
variable "organization" {
description = "The name of the organization."
type = string
nullable = false
default = null
}

variable "sensitive" {
Expand Down

0 comments on commit bf918be

Please sign in to comment.