Skip to content

Commit dc3e288

Browse files
authored
Sync github (#70)
1 parent 72a58b7 commit dc3e288

File tree

7 files changed

+9
-4
lines changed

7 files changed

+9
-4
lines changed

.github/workflows/feature-branch-chatops.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: feature-branch-chatops
23
on:
34
issue_comment:

.github/workflows/feature-branch.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: feature-branch
23
on:
34
pull_request:
@@ -9,7 +10,7 @@ on:
910
permissions:
1011
pull-requests: write
1112
id-token: write
12-
contents: read
13+
contents: write
1314

1415
jobs:
1516
terraform-module:

.github/workflows/release-branch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: release-branch
23
on:
34
push:

.github/workflows/release-published.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: release-published
23
on:
34
release:

.github/workflows/scheduled.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
---
12
name: scheduled
23
on:
3-
workflow_dispatch: {} # Allows manually trigger this workflow
4+
workflow_dispatch: { } # Allows manually trigger this workflow
45
schedule:
56
- cron: "0 3 * * *"
67

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ locals {
33
process_domain_validation_options = local.enabled && var.process_domain_validation_options && var.validation_method == "DNS"
44
domain_validation_options_set = local.process_domain_validation_options ? aws_acm_certificate.default.0.domain_validation_options : toset([])
55
public_enabled = var.certificate_authority_arn == null
6-
private_enabled = ! local.public_enabled
6+
private_enabled = !local.public_enabled
77

88
all_domains = concat(
99
[var.domain_name],

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ variable "domain_name" {
99
description = "A domain name for which the certificate should be issued"
1010

1111
validation {
12-
condition = ! can(regex("[A-Z]", var.domain_name))
12+
condition = !can(regex("[A-Z]", var.domain_name))
1313
error_message = "Domain name must be lower-case."
1414
}
1515
}

0 commit comments

Comments
 (0)