Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix readme release #20

Merged
merged 3 commits into from
Dec 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<!-- markdownlint-disable -->
# terraform-aws-ec2-client-vpn [![Latest Release](https://img.shields.io/github/release/cloudposse/terraform-example-module.svg)](https://github.com/cloudposse/terraform-example-module/releases/latest) [![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com) [![Discourse Forum](https://img.shields.io/discourse/https/ask.sweetops.com/posts.svg)](https://ask.sweetops.com/)
# terraform-aws-ec2-client-vpn [![Latest Release](https://img.shields.io/github/release/cloudposse/terraform-aws-ec2-client-vpn.svg)](https://github.com/cloudposse/terraform-aws-ec2-client-vpn/releases/latest) [![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com) [![Discourse Forum](https://img.shields.io/discourse/https/ask.sweetops.com/posts.svg)](https://ask.sweetops.com/)
<!-- markdownlint-restore -->

[![README Header][readme_header_img]][readme_header_link]
Expand Down Expand Up @@ -101,7 +101,8 @@ For automated tests of the complete example using [bats](https://github.com/bats
```hcl
module "vpc_target" {
source = "cloudposse/vpc/aws"
version = "0.21.1"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"

cidr_block = "172.16.0.0/16"

Expand All @@ -110,7 +111,8 @@ module "vpc_target" {

module "vpc_client" {
source = "cloudposse/vpc/aws"
version = "0.21.1"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"

cidr_block = "172.31.0.0/16"

Expand All @@ -119,7 +121,8 @@ module "vpc_client" {

module "subnets" {
source = "cloudposse/dynamic-subnets/aws"
version = "0.39.3"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"

availability_zones = var.availability_zones
vpc_id = module.vpc_target.vpc_id
Expand Down
13 changes: 8 additions & 5 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ github_repo: cloudposse/terraform-aws-ec2-client-vpn
# Badges to display
badges:
- name: "Latest Release"
image: "https://img.shields.io/github/release/cloudposse/terraform-example-module.svg"
url: "https://github.com/cloudposse/terraform-example-module/releases/latest"
image: "https://img.shields.io/github/release/cloudposse/terraform-aws-ec2-client-vpn.svg"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh! Didn't think to change the badges.

url: "https://github.com/cloudposse/terraform-aws-ec2-client-vpn/releases/latest"
- name: "Slack Community"
image: "https://slack.cloudposse.com/badge.svg"
url: "https://slack.cloudposse.com"
Expand Down Expand Up @@ -70,7 +70,8 @@ usage: |-
```hcl
module "vpc_target" {
source = "cloudposse/vpc/aws"
version = "0.21.1"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"

cidr_block = "172.16.0.0/16"

Expand All @@ -79,7 +80,8 @@ usage: |-

module "vpc_client" {
source = "cloudposse/vpc/aws"
version = "0.21.1"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"

cidr_block = "172.31.0.0/16"

Expand All @@ -88,7 +90,8 @@ usage: |-

module "subnets" {
source = "cloudposse/dynamic-subnets/aws"
version = "0.39.3"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"

availability_zones = var.availability_zones
vpc_id = module.vpc_target.vpc_id
Expand Down