File tree 8 files changed +15
-13
lines changed
_example/generate-certificate-dns
8 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 5
5
workflow_dispatch :
6
6
jobs :
7
7
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
9
9
secrets :
10
10
GITHUB : ${{ secrets.GITHUB }}
11
11
with :
Original file line number Diff line number Diff line change 7
7
workflow_dispatch :
8
8
jobs :
9
9
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
11
11
secrets : inherit
12
12
with :
13
13
branch : ' master'
Original file line number Diff line number Diff line change 17
17
python-version : ' 3.x'
18
18
19
19
- name : ' create readme'
20
- uses : ' clouddrove/github-actions@v9 .0.2 '
20
+ uses : ' clouddrove/github-actions@9 .0.3 '
21
21
with :
22
22
actions_subcommand : ' readme'
23
23
github_token : ' ${{ secrets.GITHUB }}'
34
34
continue-on-error : true
35
35
36
36
- name : ' push readme'
37
- uses : ' clouddrove/github-actions@v9 .0.2 '
37
+ uses : ' clouddrove/github-actions@9 .0.3 '
38
38
continue-on-error : true
39
39
with :
40
40
actions_subcommand : ' push'
Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
jobs :
8
8
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
10
10
with :
11
11
working_directory : ' ./_example/generate-certificate-dns/'
12
12
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
14
14
with :
15
15
working_directory : ' ./_example/generate-certificate-email/'
16
16
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
18
18
with :
19
19
working_directory : ' ./_example/import-certificate/'
20
20
Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
jobs :
8
8
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
10
10
secrets :
11
11
GITHUB : ${{ secrets.GITHUB }}
Original file line number Diff line number Diff line change 5
5
workflow_dispatch :
6
6
jobs :
7
7
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
9
9
secrets : inherit
10
10
with :
11
11
working_directory : ' .'
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ provider "aws" {
2
2
region = " eu-west-1"
3
3
}
4
4
5
+ locals {
6
+ domain = " clouddrove.com"
7
+ }
8
+
5
9
# #-----------------------------------------------------------------------------
6
10
# # acm Module call with DNS.
7
11
# #-----------------------------------------------------------------------------
@@ -12,7 +16,5 @@ module "acm" {
12
16
environment = " test"
13
17
14
18
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 } " ]
18
20
}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ variable "subject_alternative_names" {
46
46
47
47
variable "validation_method" {
48
48
type = string
49
- default = " "
49
+ default = " DNS "
50
50
description = " Which method to use for validation, DNS or EMAIL."
51
51
}
52
52
You can’t perform that action at this time.
0 commit comments