Skip to content

Commit

Permalink
0.11.5 (#26)
Browse files Browse the repository at this point in the history
* update readme and developer notes

* fix image url

* add latest version

Co-authored-by: alexcohen <alexcohen@ves.io>
  • Loading branch information
cohenaj194 and alexcohen authored Mar 28, 2022
1 parent 96c86ab commit a7a0eb9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is a terraform module to create Volterra's Web Application Security usecase

## Overview

![Image of WAS Usecase](https://volterra.io/static/b1b58dbfa0234c06ffab28c64d38629b/5acad/top-wasp-new.webp)
![Image of WAS Usecase](https://docs.cloud.f5.com/docs/static/3bf67d5ecc32d7a7145997464903d483/d4775/seq-wasp.webp)

---

Expand Down Expand Up @@ -43,10 +43,11 @@ This is a terraform module to create Volterra's Web Application Security usecase
$ brew upgrade hashicorp/tap/terraform
```

* Export the API certificate password as environment variable

* Export the API certificate password, path to your local p12 file and your api url as environment variables, this is needed for volterra provider to work
```bash
export VES_P12_PASSWORD=<your credential password>
export VOLT_API_P12_FILE=<path to your local p12 file>
export VOLT_API_URL=<team or org tenant api url>
```

---
Expand All @@ -58,7 +59,7 @@ terraform {
required_providers {
volterra = {
source = "volterraedge/volterra"
version = "0.4.0"
version = "0.11.5"
}
}
}
Expand Down Expand Up @@ -87,11 +88,6 @@ locals{
namespace = var.namespace != "" ? var.namespace : var.name
}
provider "volterra" {
api_p12_file = var.api_p12_file
url = var.api_url
}
module "web-app-security" {
source = "volterraedge/web-app-security/volterra"
web_app_name = var.name
Expand All @@ -103,6 +99,9 @@ output "web_app_url" {
value = module.web-app-security.app_url
}
```

---

## Requirements

| Name | Version |
Expand Down
4 changes: 4 additions & 0 deletions developer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
## How to update Requirements:

Delete everything below the `---` line starting at `## Requirements` in this Readme file and then run `terraform-docs md tbl . >> README.md` to update to the latest requirements

0 comments on commit a7a0eb9

Please sign in to comment.