Skip to content

Commit 3745ab0

Browse files
committed
pushed README.md
1 parent 1b9b72c commit 3745ab0

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
Terraform DigitalOcean Firewall
66
</h1>
77

8-
<p align="center" style="font-size: 1.2rem;">
8+
<p align="center" style="font-size: 1.2rem;">
99
Provides a DigitalOcean Cloud Firewall resource. This can be used to create, modify, and delete Firewalls.
1010
</p>
1111

1212
<p align="center">
1313

1414
<a href="https://www.terraform.io">
15-
<img src="https://img.shields.io/badge/Terraform-v0.12-green" alt="Terraform">
15+
<img src="https://img.shields.io/badge/Terraform-v0.13-green" alt="Terraform">
1616
</a>
1717
<a href="LICENSE.md">
1818
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="Licence">
@@ -41,7 +41,7 @@
4141

4242
## Prerequisites
4343

44-
This module has a few dependencies:
44+
This module has a few dependencies:
4545

4646

4747

@@ -57,7 +57,8 @@ This module has a few dependencies:
5757
Here is an example of how you can use this module in your inventory structure:
5858
```hcl
5959
module "firewall" {
60-
source = "git::https://github.com/clouddrove/terraform-digitalocean-firewall.git?ref=tags/0.12.0"
60+
source = "clouddrove/firewall/digitalocean"
61+
version = "0.13.0"
6162
name = "firewall"
6263
application = "clouddrove"
6364
environment = "test"
@@ -77,17 +78,17 @@ Here is an example of how you can use this module in your inventory structure:
7778
## Inputs
7879

7980
| Name | Description | Type | Default | Required |
80-
|------|-------------|:----:|:-----:|:-----:|
81-
| allowed_ip | List of allowed ip. | list | `<list>` | no |
82-
| allowed_ports | List of allowed ingress ports. | list | `<list>` | no |
83-
| application | Application (e.g. `cd` or `clouddrove`). | string | `` | no |
84-
| delimiter | Delimiter to be used between `organization`, `environment`, `name` and `attributes`. | string | `-` | no |
85-
| droplet_ids | The ID of the VPC that the instance security group belongs to. | list | `<list>` | no |
86-
| enable_firewall | Enable default Security Group with only Egress traffic allowed. | bool | `true` | no |
87-
| environment | Environment (e.g. `prod`, `dev`, `staging`). | string | `` | no |
88-
| label_order | Label order, e.g. `name`,`application`. | list | `<list>` | no |
89-
| name | Name (e.g. `app` or `cluster`). | string | `` | no |
90-
| protocol | The protocol. If not icmp, tcp, udp, or all use the. | string | `tcp` | no |
81+
|------|-------------|------|---------|:--------:|
82+
| allowed\_ip | List of allowed ip. | `list` | `[]` | no |
83+
| allowed\_ports | List of allowed ingress ports. | `list` | `[]` | no |
84+
| application | Application (e.g. `cd` or `clouddrove`). | `string` | `""` | no |
85+
| delimiter | Delimiter to be used between `organization`, `environment`, `name` and `attributes`. | `string` | `"-"` | no |
86+
| droplet\_ids | The ID of the VPC that the instance security group belongs to. | `list` | `[]` | no |
87+
| enable\_firewall | Enable default Security Group with only Egress traffic allowed. | `bool` | `true` | no |
88+
| environment | Environment (e.g. `prod`, `dev`, `staging`). | `string` | `""` | no |
89+
| label\_order | Label order, e.g. `name`,`application`. | `list` | `[]` | no |
90+
| name | Name (e.g. `app` or `cluster`). | `string` | `""` | no |
91+
| protocol | The protocol. If not icmp, tcp, udp, or all use the. | `string` | `"tcp"` | no |
9192

9293
## Outputs
9394

@@ -101,7 +102,7 @@ Here is an example of how you can use this module in your inventory structure:
101102

102103

103104

104-
## Feedback
105+
## Feedback
105106
If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/terraform-digitalocean-firewall/issues), or feel free to drop us an email at [hello@clouddrove.com](mailto:hello@clouddrove.com).
106107

107108
If you have found it worth your time, go ahead and give us a ★ on [our GitHub](https://github.com/clouddrove/terraform-digitalocean-firewall)!

0 commit comments

Comments
 (0)