forked from hadenlabs/terraform-aws-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: generators readme (hadenlabs#21)
- Loading branch information
Showing
3 changed files
with
267 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
# | ||
# This is the canonical configuration for the `README.md` | ||
# Run `make readme` to rebuild the `README.md` | ||
# | ||
|
||
# Name of this project | ||
name: terraform-aws-openvpn | ||
|
||
# Tags of this project | ||
tags: | ||
- openvpn | ||
- vpn | ||
|
||
# Categories of this project | ||
categories: | ||
- terraform-modules/vpn | ||
|
||
email: | ||
support: support@hadenlabs.com | ||
|
||
# Logo for this project | ||
#logo: docs/logo.png | ||
|
||
# License of this project | ||
license: 'APACHE2' | ||
|
||
# Canonical GitHub repo | ||
github_repo: hadenlabs/terraform-aws-openvpn | ||
|
||
# Badges to display | ||
badges: | ||
- name: Lint | ||
image: https://github.com/hadenlabs/terraform-aws-openvpn/actions/workflows/lint.yml/badge.svg?branch=develop | ||
url: https://github.com/hadenlabs/terraform-aws-openvpn/actions | ||
- name: Issues | ||
image: https://img.shields.io/github/issues/hadenlabs/terraform-aws-openvpn.svg | ||
url: https://github.com/hadenlabs/terraform-aws-openvpn/issues | ||
- name: Latest Release | ||
image: https://img.shields.io/github/release/hadenlabs/terraform-aws-openvpn.svg | ||
url: https://github.com/hadenlabs/terraform-aws-openvpn/releases | ||
|
||
# Short description of this project | ||
description: |- | ||
Terraform module to provision an openvpn instance. | ||
# How to use this project | ||
usage: |- | ||
```hcl | ||
module "main" { | ||
source = "hadenlabs/openvpn/aws" | ||
version = "0.2.0" | ||
providers = { | ||
aws = aws | ||
template = template | ||
local = local | ||
} | ||
public_key = local.auth_public_key | ||
private_key = local.auth_private_key | ||
admin_user = "slovacus" | ||
storage_path = "~/openvpn" | ||
} | ||
``` | ||
Full working example can be found in [example](./example) folder. | ||
examples: | ||
- 'docs/examples/common.md' | ||
|
||
include: | ||
- 'docs/include/targets.md' | ||
- 'docs/include/terraform.md' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.