Skip to content

Commit a826265

Browse files
committed
update README.md
1 parent 5bef467 commit a826265

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
Terraform Aws Acm
88
</h1>
99

10-
<p align="center" style="font-size: 1.2rem;">
10+
<p align="center" style="font-size: 1.2rem;">
1111
This terraform module is used for requesting or importing SSL/TLS certificate with validation.
1212
</p>
1313

1414
<p align="center">
1515

1616
<a href="https://www.terraform.io">
17-
<img src="https://img.shields.io/badge/Terraform-v0.14-green" alt="Terraform">
17+
<img src="https://img.shields.io/badge/Terraform-v0.15-green" alt="Terraform">
1818
</a>
1919
<a href="LICENSE.md">
2020
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="Licence">
@@ -38,7 +38,7 @@
3838
<hr>
3939

4040

41-
We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.
41+
We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.
4242

4343
This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself.
4444

@@ -49,7 +49,7 @@ We have [*fifty plus terraform modules*][terraform_modules]. A few of them are c
4949

5050
## Prerequisites
5151

52-
This module has a few dependencies:
52+
This module has a few dependencies:
5353

5454
- [Terraform 0.13](https://learn.hashicorp.com/terraform/getting-started/install.html)
5555
- [Go](https://golang.org/doc/install)
@@ -73,7 +73,7 @@ Here are some examples of how you can use this module in your inventory structur
7373
```hcl
7474
module "acm" {
7575
source = "clouddrove/acm/aws"
76-
version = "0.14.0"
76+
version = "0.15.0"
7777
name = "certificate"
7878
environment = "test"
7979
label_order = ["name","environment"]
@@ -88,7 +88,7 @@ module "acm" {
8888
```hcl
8989
module "acm" {
9090
source = "clouddrove/acm/aws"
91-
version = "0.14.0"
91+
version = "0.15.0"
9292
name = "certificate"
9393
environment = "test"
9494
label_order = ["name","environment"]
@@ -103,7 +103,7 @@ module "acm" {
103103
```hcl
104104
module "acm" {
105105
source = "clouddrove/acm/aws"
106-
version = "0.14.0"
106+
version = "0.15.0"
107107
name = "certificate"
108108
environment = "test"
109109
label_order = ["name","environment"]
@@ -137,6 +137,7 @@ module "acm" {
137137
| name | Name (e.g. `app` or `cluster`). | `string` | `""` | no |
138138
| private\_key | Path of private key. | `string` | `""` | no |
139139
| repository | Terraform current module repo | `string` | `"https://registry.terraform.io/modules/clouddrove/acm/aws"` | no |
140+
| subject\_alternative\_names | Set of domains that should be SANs in the issued certificate. To remove all elements of a previously configured list, set this value equal to an empty list ([]) or use the terraform taint command to trigger recreation. | `list(any)` | `[]` | no |
140141
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | `map(any)` | `{}` | no |
141142
| ttl | Time to live. | `number` | `600` | no |
142143
| validate\_certificate | Set to false to prevent the validation of a acm certificate. | `bool` | `false` | no |
@@ -154,7 +155,7 @@ module "acm" {
154155

155156

156157
## Testing
157-
In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system.
158+
In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system.
158159

159160
You need to run the following command in the testing folder:
160161
```hcl
@@ -163,7 +164,7 @@ You need to run the following command in the testing folder:
163164

164165

165166

166-
## Feedback
167+
## Feedback
167168
If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/terraform-aws-acm/issues), or feel free to drop us an email at [[email protected]](mailto:[email protected]).
168169

169170
If you have found it worth your time, go ahead and give us a ★ on [our GitHub](https://github.com/clouddrove/terraform-aws-acm)!

0 commit comments

Comments
 (0)