Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 samTemplate 中,我定义了一些参数,因此在我的 CodePipeline(CloudFormation 步骤)中我想用 SSM 值覆盖这些参数。我怎样才能做到这一点?
您需要在 sam 模板中执行此操作:
Parameters: S3Bucket: Type : 'AWS::SSM::Parameter::Value<String>' Default: "KEY_NAME"
KEY_NAME 是 ssm 中的键,为什么它叫 Default 我不知道?