File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 3535 env :
3636 BASE_SHA : ${{ github.event.pull_request.base.sha }}
3737 run : |
38- JQ_OUTPUT_CHANGED=$(git diff --name-only $BASE_SHA $GITHUB_SHA modules/*/ */*.tf |
38+ JQ_OUTPUT_CHANGED=$(git diff --name-only $BASE_SHA $GITHUB_SHA modules/**/*.tf |
3939 cut -d/ -f1-3 | sort -u | jq -MRsc 'split("\n")[:-1]')
4040 echo "changed_modules=$JQ_OUTPUT_CHANGED" >> $GITHUB_OUTPUT
4141
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ the bare domain and www subdomain to the canonical domain.
9393module "example_com" {
9494 source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v2"
9595
96- domain = "examples .com"
96+ domain = "example .com"
9797 aliases = [
98- "examples .org" # examples .org and www.examples .org will redirect to examples .com
98+ "example .org" # example .org and www.example .org will redirect to example .com
9999 ]
100100 alias_records = {
101101 "example.org" = {
Original file line number Diff line number Diff line change @@ -20,11 +20,15 @@ module "example_com" {
2020 }
2121 }
2222 records = {
23+ google_site_verification = {
24+ name = " google-site-verification"
25+ type = " TXT"
26+ records = [" google-site-verification-key" ]
27+ }
2328 www = {
2429 name = " www"
2530 type = " A"
2631 records = [" 1.2.3.4" ]
2732 }
2833 }
29-
3034}
You can’t perform that action at this time.
0 commit comments