Skip to content

Commit

Permalink
Make token truly optional by marking it as computed attribute
Browse files Browse the repository at this point in the history
Fixes #1
  • Loading branch information
ashald committed Aug 2, 2018
1 parent a8a1d3c commit d1c6418
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.1.1 - 2018-08-01

### Fixed

- Mark `token` as computed attribute so that it's really optional ([#1])

## 1.1.0 - 2018-07-06

### Added
Expand All @@ -12,3 +18,5 @@
### Added

- Initial implementation for `consulacl_token` resource

[#1]: https://github.com/Ashald/terraform-provider-consulacl/issues/1
1 change: 1 addition & 0 deletions consulacl/resource_consulacl_token.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func resourceConsulAclToken() *schema.Resource {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Computed: true,
},

FieldType: {
Expand Down

0 comments on commit d1c6418

Please sign in to comment.