gpt4 book ai didi

python - 如何/在哪里定义/传递cloudformation参数?

转载 作者:行者123 更新时间:2023-12-03 07:35:04 24 4
gpt4 key购买 nike

我正在学习 aws SAM Cli。我为 lambda 函数创建了一个项目。我希望能够将一个参数传递给此 cloudformation 模板,以便在 lambda 函数执行时我的 python 代码可以读取和使用该参数。我如何/在哪里在下面的 cloudformation 模板文件中指出这一点。这样,我可以为该参数指定默认值,也可以在从模板创建堆栈时覆盖它。

模板.yaml -

AWSTemplateFormatVersion: '2010-09-09'
Description: Lambda SAM Template
Globals:
Function:
Timeout: 60

Resources:
mysamplefunction:
Properties:
CodeUri: s3://some-bucket/qhfqep238974384y
Description: some app
FunctionName: mysamplefunction
Handler: main.lambda_handler
Role: arn:aws:iam::0949928960903:role/LambdaRole
Runtime: python3.7
Type: AWS::Serverless::Function
...

main.py


def lambda_handler(event, context):
print('parameter passed to cloud formation template');

最佳答案

您可以向模板添加一个顶级参数部分,其结构如下例所示。

Parameters: 
InstanceTypeParameter:
Type: String
Default: t2.micro
AllowedValues:
- t2.micro
- m1.small
- m1.large
Description: Enter t2.micro, m1.small, or m1.large. Default is t2.micro.

然后,您可以使用 Ref intrinsic function 在模板中引用这些内容比如下面的例子。

Ec2Instance:
Type: AWS::EC2::Instance
Properties:
InstanceType:
Ref: InstanceTypeParameter
ImageId: ami-0ff8a91507f77f

为了将其添加到您的 Lambda 代码中,您可能需要在 Lambda CloudFormation resource 中使用环境变量。 .

有关参数的更多信息可以在 parameters 上找到页。通过将 Ref 内在函数与合适的 environment variable 一起使用您可以在代码中引用此名称,如下例所示。

import os
region = os.environ['MY_VARIABLE']

关于python - 如何/在哪里定义/传递cloudformation参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63181034/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com