Skip to content

Commit

Permalink
chore: updating the reference to the module
Browse files Browse the repository at this point in the history
  • Loading branch information
gambol99 committed Apr 23, 2024
1 parent 6e57a27 commit a2964d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ When adding a new group to SSO, there are following steps to complete:
| Name | Source | Version |
|------|--------|---------|
| <a name="module_client_vpn"></a> [client\_vpn](#module\_client\_vpn) | cloudposse/ec2-client-vpn/aws | 1.0.0 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | appvia/network/aws | 0.1.3 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | appvia/network/aws | 0.3.0 |

## Resources

Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ locals {
## Provision the VPC for VPN
module "vpc" {
source = "appvia/network/aws"
version = "0.1.3"
version = "0.3.0"

name = var.name
availability_zones = var.availability_zones
Expand Down Expand Up @@ -41,7 +41,7 @@ module "client_vpn" {
source = "cloudposse/ec2-client-vpn/aws"
version = "1.0.0"

associated_subnets = module.vpc.public_subnet_list
associated_subnets = module.vpc.public_subnet_ids
authentication_type = "federated-authentication"
authorization_rules = var.authorizations_rules
client_cidr = var.client_cidr
Expand Down

0 comments on commit a2964d2

Please sign in to comment.