You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
42
42
43
43
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.
44
44
@@ -49,7 +49,7 @@ We have [*fifty plus terraform modules*][terraform_modules]. A few of them are c
@@ -73,7 +73,7 @@ Here are some examples of how you can use this module in your inventory structur
73
73
```hcl
74
74
module "acm" {
75
75
source = "clouddrove/acm/aws"
76
-
version = "0.14.0"
76
+
version = "0.15.0"
77
77
name = "certificate"
78
78
environment = "test"
79
79
label_order = ["name","environment"]
@@ -88,7 +88,7 @@ module "acm" {
88
88
```hcl
89
89
module "acm" {
90
90
source = "clouddrove/acm/aws"
91
-
version = "0.14.0"
91
+
version = "0.15.0"
92
92
name = "certificate"
93
93
environment = "test"
94
94
label_order = ["name","environment"]
@@ -103,7 +103,7 @@ module "acm" {
103
103
```hcl
104
104
module "acm" {
105
105
source = "clouddrove/acm/aws"
106
-
version = "0.14.0"
106
+
version = "0.15.0"
107
107
name = "certificate"
108
108
environment = "test"
109
109
label_order = ["name","environment"]
@@ -137,6 +137,7 @@ module "acm" {
137
137
| name | Name (e.g. `app` or `cluster`). |`string`|`""`| no |
138
138
| private\_key | Path of private key. |`string`|`""`| no |
139
139
| 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 |
140
141
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). |`map(any)`|`{}`| no |
141
142
| ttl | Time to live. |`number`|`600`| no |
142
143
| validate\_certificate | Set to false to prevent the validation of a acm certificate. |`bool`|`false`| no |
@@ -154,7 +155,7 @@ module "acm" {
154
155
155
156
156
157
## 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.
158
159
159
160
You need to run the following command in the testing folder:
160
161
```hcl
@@ -163,7 +164,7 @@ You need to run the following command in the testing folder:
163
164
164
165
165
166
166
-
## Feedback
167
+
## Feedback
167
168
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]).
168
169
169
170
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