File tree Expand file tree Collapse file tree 8 files changed +15
-13
lines changed
_example/generate-certificate-dns Expand file tree Collapse file tree 8 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 55 workflow_dispatch :
66jobs :
77 assignee :
8- uses : clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@master
8+ uses : clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.0.6
99 secrets :
1010 GITHUB : ${{ secrets.GITHUB }}
1111 with :
Original file line number Diff line number Diff line change 77 workflow_dispatch :
88jobs :
99 changelog :
10- uses : clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
10+ uses : clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.0.6
1111 secrets : inherit
1212 with :
1313 branch : ' master'
Original file line number Diff line number Diff line change 1717 python-version : ' 3.x'
1818
1919 - name : ' create readme'
20- uses : ' clouddrove/github-actions@v9 .0.2 '
20+ uses : ' clouddrove/github-actions@9 .0.3 '
2121 with :
2222 actions_subcommand : ' readme'
2323 github_token : ' ${{ secrets.GITHUB }}'
3434 continue-on-error : true
3535
3636 - name : ' push readme'
37- uses : ' clouddrove/github-actions@v9 .0.2 '
37+ uses : ' clouddrove/github-actions@9 .0.3 '
3838 continue-on-error : true
3939 with :
4040 actions_subcommand : ' push'
Original file line number Diff line number Diff line change 66 workflow_dispatch :
77jobs :
88 tf-checks-generate-certificate-dns-example :
9- uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
9+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.6
1010 with :
1111 working_directory : ' ./_example/generate-certificate-dns/'
1212 tf-checks-generate-certificate-email-example :
13- uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
13+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.6
1414 with :
1515 working_directory : ' ./_example/generate-certificate-email/'
1616 tf-checks-import-certificate-example :
17- uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
17+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.6
1818 with :
1919 working_directory : ' ./_example/import-certificate/'
2020
Original file line number Diff line number Diff line change 66 workflow_dispatch :
77jobs :
88 tf-lint :
9- uses : clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master
9+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.0.6
1010 secrets :
1111 GITHUB : ${{ secrets.GITHUB }}
Original file line number Diff line number Diff line change 55 workflow_dispatch :
66jobs :
77 tfsec :
8- uses : clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@master
8+ uses : clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.0.6
99 secrets : inherit
1010 with :
1111 working_directory : ' .'
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ provider "aws" {
22 region = " eu-west-1"
33}
44
5+ locals {
6+ domain = " clouddrove.com"
7+ }
8+
59# #-----------------------------------------------------------------------------
610# # acm Module call with DNS.
711# #-----------------------------------------------------------------------------
@@ -12,7 +16,5 @@ module "acm" {
1216 environment = " test"
1317
1418 domain_name = " clouddrove.com"
15- subject_alternative_names = [" www.clouddrove.com" ]
16- validation_method = " DNS"
17- enable_dns_validation = false
19+ subject_alternative_names = [" *.${ local . domain } " , " www.${ local . domain } " ]
1820}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ variable "subject_alternative_names" {
4646
4747variable "validation_method" {
4848 type = string
49- default = " "
49+ default = " DNS "
5050 description = " Which method to use for validation, DNS or EMAIL."
5151}
5252
You can’t perform that action at this time.
0 commit comments