gpt4 book ai didi

c# - .NET - 使用 AWS CDK 为 .NET 的低级 CloudFormation 资源构造标记 EC2 实例

转载 作者:行者123 更新时间:2023-12-03 07:36:51 30 4
gpt4 key购买 nike

当我们都在等待更高级别/手写的 Construct 可用于使用 AWS CDK 创建 EC2 实例时,我正在尝试使用 Amazon 上提供的自动生成的低级别 CloudFormation 资源.CDK.AWS.EC2.cloudformation.InstanceResource_Amazon.CDK.AWS.EC2 NuGet package 中。

我的测试应用程序是一个 .NET Core 控制台应用程序,其中 Amazon.CDK.AWS.EC2 NuGet package 作为唯一的其他依赖项。代码如下:

using System;
using System.Linq;

namespace AWSCDKEval
{
class Program
{
static void Main(string[] args)
{
// Create a new app. The first argument is used to display a usage message for this app.
var appArgs = new [] { $"dotnet ${nameof(AWSCDKEval)}" }
.Concat(args)
.ToArray();
var app = new Amazon.CDK.App(appArgs);

new TestStack(app, "test-aws-cdk-stack-1", new Amazon.CDK.StackProps());

// Your app must write the return value of app.Run() to standard output. The `cdk init`
// and `cdk synth` commands require this output.
Console.WriteLine(app.Run());
}
}

public class TestStack : Amazon.CDK.Stack
{
public TestStack(Amazon.CDK.App parent, string name, Amazon.CDK.IStackProps props) : base(parent, name, props)
{
new Amazon.CDK.AWS.EC2.cloudformation.InstanceResource_(
this,
"testInstance1",
new Amazon.CDK.AWS.EC2.cloudformation.InstanceResourceProps
{
ImageId = "ami-0f1155cc2cb6b0cfd", // Microsoft Windows Server 2016 Base
InstanceType = "t2.micro",
KeyName = "my_key",
Tags = new []
{
new Amazon.CDK.Tag { Key = "Name", Value = "test-instance-1" },
new Amazon.CDK.Tag { Key = "foo", Value = "bar" }
}
});
}
}
}

然后,您编译该项目并使用 CDK 将其合成到 CloudFormation 模板和除标签之外的所有设置中。

dotnet build <folder-with-code>
cdk synth --output <folder-where-to-write-cf-templates>

输出:

Resources:
testInstance1:
Type: 'AWS::EC2::Instance'
Properties:
ImageId: ami-0f1155cc2cb6b0cfd
InstanceType: t2.micro
KeyName: my_key
CDKMetadata:
Type: 'AWS::CDK::Metadata'
Properties:
Modules: '@aws-cdk/aws-ec2=0.9.1,@aws-cdk/aws-iam=0.9.1,@aws-cdk/cdk=0.9.1,@aws-cdk/cx-api=0.9.1,js-base64=2.4.9'

现在,我完全理解 CDK 还处于非常早期的阶段,不建议用于任何开发工作,但最好的部分是我计划在 cloudformation 命名空间下提供所有 native 资源在 CDK 增长时使用。

任何正确方向的帮助将不胜感激!

最佳答案

原来,这是currently a bug in AWS CDK and does work如果您使用 typescript 而不是任何 C# .NET。我已经记录了issue对于同样的。

关于c# - .NET - 使用 AWS CDK 为 .NET 的低级 CloudFormation 资源构造标记 EC2 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52399346/

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