Skip to content

Commit

Permalink
Update terraform provider
Browse files Browse the repository at this point in the history
  • Loading branch information
impart-security committed Jan 17, 2024
1 parent 3bcaae1 commit 7661a30
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# Changelog

## [0.2.1] - 2024-01-16

### Changed

- Generate examples for log and api bindings

## [0.2.0] - 2024-01-16

### Changed
Expand Down Expand Up @@ -28,3 +34,4 @@

- Initial release


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
13 changes: 12 additions & 1 deletion docs/resources/api_binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ description: |-

Manage an api binding.


## Example Usage

```terraform
# Create a new api binding
resource "impart_api_binding" "example" {
name = "api_binding_example"
port = 443
spec_id = resource.impart_spec.example.id
hostname = "example.com"
base_path = "/"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
13 changes: 12 additions & 1 deletion docs/resources/log_binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ description: |-

Manage a log binding.


## Example Usage

```terraform
# 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"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down

0 comments on commit 7661a30

Please sign in to comment.