错误:启动源实例时出错:不支持:当前不支持请求的配置

时间:2019-08-25 09:36:48

标签: terraform terraform-provider-aws

我正在学习Udemy的Terraform课程“学习DevOps:借助Terraform实现基础架构自动化”。根据练习“地形中的第一步-启动实例”,当我运行“ instance.tf”时,出现以下错误。

lock

这是我的instance.tf文件。

Error: Error launching source instance: Unsupported: The requested configuration is currently not supported. Please check the documentation for supported configurations.
    status code: 400, request id: cbfbb2e8-35bd-4527-8da3-b59506c55b81

  on instance.tf line 7, in resource "aws_instance" "example":
   7: resource "aws_instance" "example" {

请帮助。

3 个答案:

答案 0 :(得分:1)

代码看起来不错。

请检查此AMI ami-0e175be6acf8b637d是否在亚太地区(孟买)中存在

如果没有,您将得到以上错误。

答案 1 :(得分:0)

您可以在正确的AMI详细信息之后解决此问题。

答案 2 :(得分:0)

检查区域上的实例类型。在我的情况下,它确实首先失败了,但是当我检查我在脚本上选择的实例类型时,该实例类型在我指定的区域中不可用。 更改实例类型后,它确实起作用了。试试看

instance_type = "t3.micro" }