Skip to content

Commit

Permalink
Update docs and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Dec 11, 2021
1 parent 1f3689a commit fa2e2e6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [v1.0.7](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.7) (11 December 2021)

### Merged
- [#115](https://github.com/civo/terraform-provider-civo/pull/115) - Fixed error when you sending to scaling a kubernetes cluster
- [#114](https://github.com/civo/terraform-provider-civo/pull/114) - update docs for datasource civo_firewall

## [v1.0.6](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.6) (9 December 2021)

### Merged
Expand Down
15 changes: 11 additions & 4 deletions docs/data-sources/firewall.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ subcategory: ""
description: |-
Retrieve information about a firewall for use in other resources.
This data source provides all of the firewall's properties as configured on your Civo account.
Firewalls may be looked up by id or label, and you can optionally pass region if you want to make a lookup for an expecific firewall inside that region.
Firewalls may be looked up by id or name, and you can optionally pass region if you want to make a lookup for an expecific firewall inside that region.
---

# civo_firewall (Data Source)
Expand All @@ -14,18 +14,25 @@ Retrieve information about a firewall for use in other resources.

This data source provides all of the firewall's properties as configured on your Civo account.

Firewalls may be looked up by id or label, and you can optionally pass region if you want to make a lookup for an expecific firewall inside that region.
Firewalls may be looked up by id or name, and you can optionally pass region if you want to make a lookup for an expecific firewall inside that region.

## Example Usage

```terraform
data "civo_firewall" "test" {
name = "test-firewall"
region = "NYC1"
}
```

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

### Optional

- **id** (String) The ID of this resource.
- **name** (String) The name of the Kubernetes Cluster
- **region** (String) The region where cluster is running
- **name** (String) The name of the firewall
- **region** (String) The region where the firewall is

### Read-Only

Expand Down

0 comments on commit fa2e2e6

Please sign in to comment.