-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
impart-security
committed
Jan 16, 2024
1 parent
3d8e55d
commit 3bcaae1
Showing
29 changed files
with
3,412 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.2 | ||
0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,5 +29,3 @@ data "impart_spec" "example" { | |
### Read-Only | ||
|
||
- `name` (String) The name for this specification. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "impart_api_binding Resource - impart" | ||
subcategory: "" | ||
description: |- | ||
Manage an api binding. | ||
--- | ||
|
||
# impart_api_binding (Resource) | ||
|
||
Manage an api binding. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `base_path` (String) The base_path for this api binding. | ||
- `hostname` (String) The hostname for this api binding. | ||
- `name` (String) The name for this api binding. | ||
- `port` (Number) The port for this api binding. | ||
- `spec_id` (String) The specification id. | ||
|
||
### Optional | ||
|
||
- `forwarded_for` (List of String) The forwarded_for for this api binding. | ||
- `forwarded_host` (List of String) The forwarded_host for this api binding. | ||
- `forwarded_id` (List of String) The forwarded_id for this api binding. | ||
- `forwarded_proto` (List of String) The forwarded_proto for this api binding. | ||
- `hops` (Number) The hops for this api binding. | ||
- `upstream_origin` (String) The upstream_origin for this api binding. | ||
- `use_forwarded` (Boolean) The use_forwarded for this api binding. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) Identifier for this api binding. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "impart_log_binding Resource - impart" | ||
subcategory: "" | ||
description: |- | ||
Manage a log binding. | ||
--- | ||
|
||
# impart_log_binding (Resource) | ||
|
||
Manage a log binding. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `grok_pattern` (String) The base_path for this log binding. | ||
- `name` (String) The name for this log binding. | ||
- `spec_id` (String) The specification id. | ||
|
||
### Optional | ||
|
||
- `logstream_id` (String) The logstream id for this log binding. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) Identifier for this log binding. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,5 +40,3 @@ resource "impart_rule_script" "example" { | |
### Read-Only | ||
|
||
- `id` (String) Identifier for the rule script. | ||
|
||
|
6 changes: 3 additions & 3 deletions
6
...ples/resources/impart_binding/resource.tf → .../resources/impart_api_binding/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Create a new log binding | ||
resource "impart_log_binding" "example" { | ||
name = "log_binding_example" | ||
grok_pattern = <<EOF | ||
%%{HTTPDATE:timestamp} "(?:%%{WORD:http_method}|-) (?:%%{GREEDYDATA:request}|-) (?:HTTP/%%{NUMBER:httpversion}|-( )?)" (?:%%{NUMBER:response_code}|-) | ||
EOF | ||
logstream_id = "logstream_id" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.