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 16, 2022
1 parent 967dd11 commit ed203fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

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

### Merged
- [#120](https://github.com/civo/terraform-provider-civo/pull/120) - Added the egress rules and create_default_rules option to firewall

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

### Merged
Expand Down
1 change: 1 addition & 0 deletions docs/resources/firewall.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ resource "civo_firewall" "www" {

### Optional

- **create_default_rules** (Boolean) The create rules flag is used to create the default firewall rules, if is not defined will be set to true
- **id** (String) The ID of this resource.
- **network_id** (String) The firewall network, if is not defined we use the default network
- **region** (String) The firewall region, if is not defined we use the global defined in the provider
Expand Down
3 changes: 2 additions & 1 deletion docs/resources/firewall_rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,13 @@ resource "civo_firewall_rule" "custom_port" {

### Required

- **action** (String) the action of the rule can be allow or deny
- **cidr** (Set of String) The CIDR notation of the other end to affect, or a valid network CIDR (e.g. 0.0.0.0/0 to open for everyone or 1.2.3.4/32 to open just for a specific IP address)
- **direction** (String) The direction of the rule can be ingress or egress
- **firewall_id** (String) The Firewall ID

### Optional

- **direction** (String) Will this rule affect ingress traffic (only `ingress` is supported now)
- **end_port** (String) The end of the port range (this is optional, by default it will only apply to the single port listed in start_port)
- **id** (String) The ID of this resource.
- **label** (String) A string that will be the displayed name/reference for this rule
Expand Down

0 comments on commit ed203fb

Please sign in to comment.