【发布时间】:2021-05-29 22:51:39
【问题描述】:
我正在尝试使用 terraform 并使用 amazon-linux-2 映像在 aws 上启动一个实例。但我得到了 Microsoft SQL Server 企业版的错误。
provider "aws" {
version = "~> 2.0"
region = "us-east-1"
}
resource "aws_instance" "dev" {
ami = "${data.aws_ami.amazon-linux-2.id}"
instance_type = "t2.micro"
key_name = "terraform"
tags = {
"Name" = "dev-terraform"
}
}
data "aws_ami" "amazon-linux-2" {
most_recent = true
owners = ["amazon"]
filter {
name = "owner-alias"
values = ["amazon"]
}
filter {
name = "name"
values = ["amzn2-ami-hvm*"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
}
错误:
Error: Error launching source instance: UnsupportedOperation: Microsoft SQL Server Enterprise Edition is not supported for the instance type 't2.micro'.
status code: 400, request id: 72df60b9-46ac-4616-ab3f-b964ab2f3156
on main.tf line 6, in resource "aws_instance" "dev":
6: resource "aws_instance" "dev" {
我与 Microsoft 没有任何关系,我无法理解为什么会出现此错误。
【问题讨论】:
标签: amazon-web-services terraform amazon-linux