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 Feb 28, 2022
1 parent 36a768b commit 2634c80
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

## [v1.0.13](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.13) (28 February 2022)

### Merged
- [#122](https://github.com/civo/terraform-provider-civo/pull/122) - Fix lb enable proxy protocol type

### Commits
- [a06a034](https://github.com/civo/terraform-provider-civo/commit/a06a03405dd6e78cde30dd44e84ce586a523f03f) - Added the lb example for the doc

## [v1.0.12](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.12) (26 February 2022)

### Merged
Expand Down
10 changes: 9 additions & 1 deletion docs/data-sources/loadbalancer.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ An error will be raised if the provided load balancer name does not exist in you

```terraform
# TODO
data civo_loadbalancer "my-lb" {
#id = "c385638f-6bb7-4d74-840c-4d98f3d15082" // Optional
name = "lb-name"
}
output "civo_loadbalancer_output" {
value = data.civo_loadbalancer.my-lb.public_ip
}
```

<!-- schema generated by tfplugindocs -->
Expand All @@ -32,7 +40,7 @@ An error will be raised if the provided load balancer name does not exist in you
- **algorithm** (String) The algorithm used by the load balancer
- **backends** (List of Object) (see [below for nested schema](#nestedatt--backends))
- **cluster_id** (String) The cluster id of the load balancer
- **enable_proxy_protocol** (Boolean) Whether the load balancer is configured to proxy protocol
- **enable_proxy_protocol** (String) The enabled proxy protocol of the load balancer
- **external_traffic_policy** (String) The external traffic policy of the load balancer
- **firewall_id** (String) The firewall id of the load balancer
- **private_ip** (String) The private ip of the load balancer
Expand Down

0 comments on commit 2634c80

Please sign in to comment.