gpt4 book ai didi

typescript - 由于未在堆栈级别指定帐户/区域,因此无法从上下文提供程序 ami 检索值

转载 作者:行者123 更新时间:2023-12-02 03:01:05 25 4
gpt4 key购买 nike

您好,我尝试在 AWS CDK 上创建堆栈时遇到问题

    import * as cdk from '@aws-cdk/core';
import ec2 = require('@aws-cdk/aws-ec2');
import { SubnetType } from '@aws-cdk/aws-ec2';

export class FirstDemoStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);

const natGatewayProvider = ec2.NatProvider.instance({
instanceType: new ec2.InstanceType('t3.micro')
});

const vpc = new ec2.Vpc(this, 'VPC_Test', {
cidr: '10.0.0.0/26',
maxAzs: 1,
subnetConfiguration:[
{
subnetType: ec2.SubnetType.PUBLIC,
name: 'Ingress',
cidrMask: 28
},
{
cidrMask: 28,
name: 'Application',
subnetType: ec2.SubnetType.PRIVATE
}
],
natGatewayProvider,
natGateways:2,
});
}
}

所以我得到了下一个错误

    Cannot retrieve value from context provider ami since account/region are not specified at the stack level. Either configure "env" with explicit account and region when you define your stack, or use the environment variables "CDK_DEFAULT_ACCOUNT" and "CDK_DEFAULT_REGION" to inherit environment information from the CLI (not recommended for production stacks)

我知道我需要将区域和帐户添加到我的堆栈中,但我不知道在哪里

最佳答案

如果我们仔分割析该错误,则表明为了找到适合您的 EC2 实例的 AMI,需要设置一个区域/帐户。有几种方法可以做到这一点。

1) 推荐在实例化堆栈时设置信息

在您的 index.ts 文件中,您将找到 new FirstDemoStack(...) 调用。您需要修改它以包含一些环境变量。您可以在此处设置您的帐户和区域。

new FirstDemoStack(app, 'first-demo-stack', { env: {
account: 'your-account-number',
region: 'us-east-1' // or whatever region you use
}});

2)您可以在环境变量中设置它。

您需要将 CDK_DEFAULT_ACCOUNTCDK_DEFAULT_REGION 设置为其各自的值。您可以使用它,但如果您需要使用两个区域或两个帐户,则需要对它们进行硬编码。

关于typescript - 由于未在堆栈级别指定帐户/区域,因此无法从上下文提供程序 ami 检索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59960043/

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