Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output for stack name and prepending to ssm params #216

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pca-main-nokendra.template
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,7 @@ Resources:
- !Ref InputBucketName
InputBucketRawAudio: !Ref InputBucketRawAudio
InputBucketOrigTranscripts: !Ref InputBucketOrigTranscripts
MainStackName: !Ref AWS::StackName
MaxSpeakers: !Ref MaxSpeakers
MinSentimentNegative: !Ref MinSentimentNegative
MinSentimentPositive: !Ref MinSentimentPositive
Expand Down
1 change: 1 addition & 0 deletions pca-main.template
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,7 @@ Resources:
- !Ref InputBucketName
InputBucketRawAudio: !Ref InputBucketRawAudio
InputBucketOrigTranscripts: !Ref InputBucketOrigTranscripts
MainStackName: !Ref AWS::StackName
MaxSpeakers: !Ref MaxSpeakers
MinSentimentNegative: !Ref MinSentimentNegative
MinSentimentPositive: !Ref MinSentimentPositive
Expand Down
2 changes: 1 addition & 1 deletion pca-server/cfn/pca-server.template
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Resources:
InitialInstanceCount: !Ref SummarizationSageMakerInitialInstanceCount

Outputs:

FetchTranscriptArn:
Value: !GetAtt PCA.Outputs.FetchTranscriptArn

Expand Down
7 changes: 6 additions & 1 deletion pca-ssm/cfn/ssm.template
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ Parameters:
short answer to the question at the end. If the answer cannot be determined from the transcript, then reply saying Sorry,
I don't know. Use gender neutral pronouns. Do not use XML tags in the answer. <br><transcript><br>{transcript}<br></transcript><br>{question}<br><br>Assistant:

MainStackName:
Type: String
Default: ""
Description: Name of the main CloudFormation stack, can be used to give resources in the nested stacks unique names

MaxSpeakers:
Type: String
Default: "2"
Expand Down Expand Up @@ -291,7 +296,7 @@ Resources:
BulkUploadBucketParameter:
Type: "AWS::SSM::Parameter"
Properties:
Name: BulkUploadBucket
Name: !Sub "'${MainStackName}'-BulkUploadBucket"
Type: String
Description: Bucket where files can be dropped, and a secondary Step Function can be manually enabled to drip feed them into the system
Value: !Ref BulkUploadBucketName
Expand Down