Skip to content

Commit

Permalink
taskcat test
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanvaughn committed Nov 27, 2024
1 parent fdb6ab1 commit 3a6ac32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:
branches: [ develop ]
schedule:
- cron: '3 19 * * 1' # run Mondays at 3:19pm pacific
- cron: '3 19 * * 1' # run Mondays at 11:03am pacific during Standard Time, 12:03pm during Daylight Saving Time

jobs:
taskcat:
Expand Down
21 changes: 0 additions & 21 deletions cdk/jitsi/jitsi_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,27 +94,6 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:
description="Optional: ARN of SSM Parameter Store Secure String containing custom code to populate custom-interface-config.js"
)

#
# CONDITIONS
#
custom_dot_env_parameter_arn_condition = CfnCondition(
self,
"CustomDotEnvParameterArnCondition",
expression=Fn.condition_not(Fn.condition_equals(custom_dot_env_parameter_arn_param.value, ""))
)

custom_config_js_parameter_arn_condition = CfnCondition(
self,
"CustomConfigJsParameterArnCondition",
expression=Fn.condition_not(Fn.condition_equals(custom_config_js_parameter_arn_param.value, ""))
)

custom_interface_config_js_parameter_arn_condition = CfnCondition(
self,
"CustomInterfaceConfigJsParameterArnCondition",
expression=Fn.condition_not(Fn.condition_equals(custom_interface_config_js_parameter_arn_param.value, ""))
)

#
# RESOURCES
#
Expand Down
7 changes: 4 additions & 3 deletions test/main-test/.taskcat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ project:
tests:
allResources:
parameters:
JitsiHostname: "oe-patterns-jitsi-taskcat-$[taskcat_random-string].dev.patterns.ordinaryexperts.com"
LetsEncryptCertificateEmail: [email protected]
Route53HostedZoneName: dev.patterns.ordinaryexperts.com
AlbCertificateArn: arn:aws:acm:us-east-1:992593896645:certificate/943928d7-bfce-469c-b1bf-11561024580e
AlbIngressCidr: 0.0.0.0/0
DnsHostname: "oe-patterns-jitsi-taskcat-$[taskcat_random-string].dev.patterns.ordinaryexperts.com"
DnsRoute53HostedZoneName: dev.patterns.ordinaryexperts.com
VpcId: vpc-00425deda4c835455
VpcPrivateSubnet1Id: subnet-030c94b9795c6cb96
VpcPrivateSubnet2Id: subnet-079290412ce63c4d5
Expand Down

0 comments on commit 3a6ac32

Please sign in to comment.