Skip to content

Commit 6be7de3

Browse files
author
Nikita Dugar
committed
Merge branch 'master' of github.com:clouddrove/terraform-aws-acm
2 parents 7f42781 + 3af9577 commit 6be7de3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ module "acm" {
122122
| certificate_body | Path of certificate body. | string | `~` | no |
123123
| certificate_chain | Path of certificate chain. | string | `` | no |
124124
| delimiter | Delimiter to be used between `organization`, `environment`, `name` and `attributes`. | string | `-` | no |
125-
| domain_name | A domain name for which the certificate should be issued. | string | `` | no |
125+
| domain_name | A domain name for which the certificate should be issued. | string | - | yes |
126126
| enable_acm_certificate | Set to false to prevent the creation of a acm certificate. | string | `true` | no |
127127
| enable_dns_validation | Set to prevent validation of DNS. | string | `false` | no |
128128
| environment | Environment (e.g. `prod`, `dev`, `staging`). | string | `` | no |
@@ -133,7 +133,7 @@ module "acm" {
133133
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | map | `<map>` | no |
134134
| ttl | Time to live. | number | `600` | no |
135135
| validate_certificate | Set to false to prevent the validation of a acm certificate. | string | `false` | no |
136-
| validation_method | Which method to use for validation, DNS or EMAIL. | string | `` | no |
136+
| validation_method | Which method to use for validation, DNS or EMAIL. | string | - | yes |
137137

138138
## Outputs
139139

@@ -160,7 +160,7 @@ You need to run the following command in the testing folder:
160160
## Feedback
161161
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 [hello@clouddrove.com](mailto:hello@clouddrove.com).
162162

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

165165
## About us
166166

variables.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,10 @@ variable "tags" {
4747
variable "domain_name" {
4848
type = string
4949
description = "A domain name for which the certificate should be issued."
50-
default = ""
5150
}
5251

5352
variable "validation_method" {
5453
type = string
55-
default = ""
5654
description = "Which method to use for validation, DNS or EMAIL."
5755
}
5856

0 commit comments

Comments
 (0)