Skip to content
This repository has been archived by the owner on May 22, 2022. It is now read-only.

Commit

Permalink
feat: added JSONOBJECT to log stream (alexkappa/terraform-provider-au…
Browse files Browse the repository at this point in the history
  • Loading branch information
alekc committed Sep 19, 2021
1 parent 3d8000d commit 357cf04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 1.1.0
ENHANCEMENTS: added `auth0_action` and `auth0_flow` resources
ENHANCEMENTS:
* Added `auth0_action` and `auth0_flow` resources
* Added JSONOBJECT option to logstream

## 1.0.0

Expand Down
3 changes: 2 additions & 1 deletion auth0/resource_auth0_log_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,11 @@ func newLogStream() *schema.Resource {
Type: schema.TypeString,
Optional: true,
RequiredWith: []string{"sink.0.http_endpoint", "sink.0.http_authorization", "sink.0.http_content_type"},
Description: "HTTP Content Format can be JSONLINES or JSONARRAY",
Description: "HTTP Content Format can be `JSONLINES`, `JSONARRAY` or `JSONOBJECT`",
ValidateFunc: validation.StringInSlice([]string{
"JSONLINES",
"JSONARRAY",
"JSONOBJECT",
}, false),
},
"http_content_type": {
Expand Down

0 comments on commit 357cf04

Please sign in to comment.