Skip to content

Commit ab1f3fa

Browse files
authored
chore: quick fix of rd service template (#2623)
Previous PR #2616 breaks e2e test. This PR is a quick fix of that. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent 82fdc27 commit ab1f3fa

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

internal/pkg/template/workload.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,14 @@ type ParseRequestDrivenWebServiceInput struct {
275275
NestedStack *WorkloadNestedStackOpts // Outputs from nested stacks such as the addons stack.
276276
EnableHealthCheck bool
277277
EnvControllerLambda string
278+
279+
// Input needed for the custom resource that adds a custom domain to the service.
280+
ScriptBucketName string
281+
CustomDomainLambda string
282+
AWSSDKLayer string
283+
Alias string
284+
AppDNSDelegationRole string
285+
AppDNSName string
278286
}
279287

280288
// ParseLoadBalancedWebService parses a load balanced web service's CloudFormation template

templates/workloads/services/rd-web/cf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Resources:
159159
ServiceARN: !GetAtt Service.ServiceArn
160160
CustomDomain: {{ .Alias }}
161161
AppDNSRole: {{ .AppDNSRole }}
162-
AppDNSName: {{ .AppDNSName }
162+
AppDNSName: {{ .AppDNSName }}
163163

164164
CustomResourceRole:
165165
Type: AWS::IAM::Role

0 commit comments

Comments
 (0)