aws-solutions / aws-connected-vehicle-solution

The AWS Connected Vehicle Solution is a reference implementation that provides a foundation for automotive product transformations for connected vehicle services, autonomous driving, electric powertrains, and shared mobility.
http://aws.amazon.com/answers/iot/connected-vehicle-cloud/
Other
87 stars 54 forks source link

failed to create a CloudFornation stack #12

Open setch3000 opened 2 years ago

setch3000 commented 2 years ago

Hi,

I got an error when I tried to make a CloudFornation stack with 'https://github.com/aws-solutions/aws-connected-vehicle-solution/blob/master/deployment/aws-connected-vehicle-solution.template' file. Could you please check and help me on this?

Properties validation failed for resource JitrServiceFunction with message: #/Code/S3Bucket: failed validation constraint for keyword [pattern] cvs-stack

agamalf88 commented 1 year ago

Hi ,

I got same issue as above! any help on this?

agamalf88 commented 1 year ago

I found the issue in S3bucket , the join function is adding "-" , if you removed this it should work

JimmySunCreater commented 1 year ago

I found the issue in S3bucket , the join function is adding "-" , if you removed this it should work

Hi, I removed "-" , from template Before S3Bucket: !Join ["-", [!FindInMap ["SourceCode", "General", "S3Bucket"], Ref: "AWS::Region"]] After S3Bucket: !Join [[!FindInMap ["SourceCode", "General", "S3Bucket"], Ref: "AWS::Region"]] But got another problem Template error: every Fn::Join object requires two parameters, (1) a string delimiter and (2) a list of strings to be joined or a function that returns a list of strings (such as Fn::GetAZs) to be joined. Do you have any clue about it, thanks a lot.