Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
clouddrove-ci committed Jun 7, 2023
1 parent 1ec16e0 commit 73aec55
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,20 @@ This module has a few dependencies:
Here is an example of how you can use this module in your inventory structure:
```hcl
module "vpn" {
source = "clouddrove/client-vpn/aws"
version = "1.0.1"
name = "test-vpn"
enabled = true
environment = "example"
label_order = ["name", "environment"]
cidr_block = "172.0.0.0/16"
subnet_ids = module.subnets.public_subnet_id
route_cidr = ["0.0.0.0/0"]
route_subnet_ids = ["subnet-xxxxxxxxxxx"]
network_cidr = ["0.0.0.0/0"]
source = "clouddrove/client-vpn/aws"
version = "1.0.5"
name = "test-vpn"
enabled = true
split_tunnel_enable = true
environment = "example"
label_order = ["name", "environment"]
cidr_block = "172.0.0.0/16"
subnet_ids = module.subnets.public_subnet_id
route_cidr = ["0.0.0.0/0", "0.0.0.0/0"]
security_group_ids = [""]
route_subnet_ids = module.subnets.public_subnet_id
network_cidr = ["0.0.0.0/0"]
}
```

Expand Down

0 comments on commit 73aec55

Please sign in to comment.