Skip to content

Commit

Permalink
build: generate license lgpl (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Mar 27, 2021
1 parent 1b267ca commit 30bb76c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 34 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ All other trademarks referenced herein are the property of their respective owne

## License

The code and styles are licensed under the APACHE2 license [See project license.](LICENSE).
The code and styles are licensed under the LGPL-3.0 license [See project license.](LICENSE).

## Don't forget to 🌟 Star 🌟 the repo if you like terraform-aws-openvpn

Expand Down
68 changes: 35 additions & 33 deletions docs/include/terraform.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,52 @@
<!-- DO NOT EDIT. THIS FILE IS GENERATED BY THE MAKEFILE. -->

# Terraform variables

This document gives an overview of variables used in the platform of the terraform-aws-openvpn.

## Requirements

| Name | Version |
|------|---------|
| Name | Version |
| --------- | ------- |
| terraform | >= 0.13 |
| aws | >=3.2.0 |
| local | >=1.3.0 |
| null | >=0.1.0 |
| template | >=1.0.0 |
| aws | >=3.2.0 |
| local | >=1.3.0 |
| null | >=0.1.0 |
| template | >=1.0.0 |

## Providers

| Name | Version |
|------|---------|
| aws | >=3.2.0 |
| null | >=0.1.0 |
| Name | Version |
| -------- | ------- |
| aws | >=3.2.0 |
| null | >=0.1.0 |
| template | >=1.0.0 |

## Inputs

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| private_key | private key | `string` | n/a | yes |
| public_key | public key | `string` | n/a | yes |
| admin_user | admin user | `string` | `"openvpn"` | no |
| https_cidr | https cidr | `string` | `"0.0.0.0/0"` | no |
| https_port | port https | `number` | `443` | no |
| instance_type | type instance | `string` | `"t2.micro"` | no |
| ssh_cidr | ssh cidr | `string` | `"0.0.0.0/0"` | no |
| ssh_port | port ssh | `number` | `22` | no |
| ssh_user | user ssh | `string` | `"ubuntu"` | no |
| storage_path | storage path keys to local | `string` | `"~/openvpn"` | no |
| subnet_cidr_block | subnet cidr block | `string` | `"10.0.0.0/16"` | no |
| tcp_cidr | tcp cidr | `string` | `"0.0.0.0/0"` | no |
| tcp_port | port tcp | `number` | `943` | no |
| udp_cidr | udp cidr | `string` | `"0.0.0.0/0"` | no |
| udp_port | udp tcp | `number` | `1194` | no |
| vpc_cidr_block | vpc cidr block | `string` | `"10.0.0.0/16"` | no |
| Name | Description | Type | Default | Required |
| ----------------- | -------------------------- | -------- | --------------- | :------: |
| private_key | private key | `string` | n/a | yes |
| public_key | public key | `string` | n/a | yes |
| admin_user | admin user | `string` | `"openvpn"` | no |
| https_cidr | https cidr | `string` | `"0.0.0.0/0"` | no |
| https_port | port https | `number` | `443` | no |
| instance_type | type instance | `string` | `"t2.micro"` | no |
| ssh_cidr | ssh cidr | `string` | `"0.0.0.0/0"` | no |
| ssh_port | port ssh | `number` | `22` | no |
| ssh_user | user ssh | `string` | `"ubuntu"` | no |
| storage_path | storage path keys to local | `string` | `"~/openvpn"` | no |
| subnet_cidr_block | subnet cidr block | `string` | `"10.0.0.0/16"` | no |
| tcp_cidr | tcp cidr | `string` | `"0.0.0.0/0"` | no |
| tcp_port | port tcp | `number` | `943` | no |
| udp_cidr | udp cidr | `string` | `"0.0.0.0/0"` | no |
| udp_port | udp tcp | `number` | `1194` | no |
| vpc_cidr_block | vpc cidr block | `string` | `"10.0.0.0/16"` | no |

## Outputs

| Name | Description |
|------|-------------|
| instance | return instance openvpn |
| Name | Description |
| ----------- | ----------------------------------------- |
| instance | return instance openvpn |
| instance_ip | return instance openvpn elastic ip public |
| private_key | return filepath privatekey |

| private_key | return filepath privatekey |

0 comments on commit 30bb76c

Please sign in to comment.