0

ich eine einfache Cloudformation-Vorlage geschrieben, die eine EC2 isntance auf AWS erstellen soll.Cloudformation-Vorlage gibt "t Nicht-Windows-Instanzen mit einer Virtualisierungstyp‚hvm‘sind zur Zeit nicht für diese Instanz Typ unterstützt

Cloudformation-Vorlage gibt "Nicht-Windows-Instanzen mit dem Virtualisierungstyp 'hvm' werden derzeit für diesen Instanztyp nicht unterstützt." Ich habe in diesem Forum nachgeschlagen und sie haben gesagt, dass "InstanceType" fehlt. Ich bin brandneu in der Cloud-Bildung. Wo soll ich hinlegen "InstanceTyp"? Vielen Dank { "AWSTemplateFormatVersion": "2010-09-09",

 "Description" : "AWS CloudFormation Sample Template EC2InstanceSample: Create an Amazon EC2 instance running the Amazon Linux AMI. The AMI is chosen based on the region in which the stack is run. This example uses the default security group, so to SSH to the new instance using the KeyPair you enter, you will need to have port 22 open in your default security group. **WARNING** This template an Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.", 

    "Parameters" : { 
     "KeyName": { 
     "Description" : "Name of an existing EC2 KeyPair ", 
     "Type": "String", 
     "MinLength": "1", 
     "MaxLength": "255", 
     "AllowedPattern" : "[\\x20-\\x7E]*", 
     "ConstraintDescription" : "can contain only ASCII characters." 
     } 
    }, 

    "Mappings" : { 
    "RegionMap" : { 
      "us-east-1"  : { "AMI" : "ami-6df1e514" }, 
      "us-west-1"  : { "AMI" : "ami-6df1e514" }, 
      "us-west-2"  : { "AMI" : "ami-6df1e514" }, 
      "eu-west-1"  : { "AMI" : "ami-6df1e514" }, 
      "sa-east-1"  : { "AMI" : "ami-3e3be423" }, 
      "ap-southeast-1" : { "AMI" : "ami-74dda626" }, 
      "ap-southeast-2" : { "AMI" : "ami-b3990e89" }, 
      "ap-northeast-1" : { "AMI" : "ami-dcfa4edd" } 
      } 
      }, 

     "Resources" : { 
     "Ec2Instance" : { 
      "Type" : "AWS::EC2::Instance", 
      "Properties" : { 
      "KeyName" : { "Ref" : "KeyName" }, 
      "ImageId" : { "Fn::FindInMap" : [ "RegionMap", { "Ref" : "AWS::Region" }, "AMI" ]}, 
      "UserData" : { "Fn::Base64" : "80" } 
     } 
     } 
    }, 

    "Outputs" : { 
"InstanceId" : { 
    "Description" : "InstanceId of the newly created EC2 instance", 
    "Value" : { "Ref" : "Ec2Instance" } 
}, 
"AZ" : { 
    "Description" : "Availability Zone of the newly created EC2 instance", 
    "Value" : { "Fn::GetAtt" : [ "Ec2Instance", "AvailabilityZone" ] } 
}, 
"PublicIP" : { 
    "Description" : "Public IP address of the newly created EC2 instance", 
    "Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PublicIp" ] } 
}, 
"PrivateIP" : { 
    "Description" : "Private IP address of the newly created EC2 instance", 
    "Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PrivateIp" ] } 
}, 
"PublicDNS" : { 
    "Description" : "Public DNSName of the newly created EC2 instance", 
    "Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PublicDnsName" ] } 
}, 
"PrivateDNS" : { 
    "Description" : "Private DNSName of the newly created EC2 instance", 
    "Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PrivateDnsName" ] } 
    } 
    } 
} 
+0

ich gesucht, bevor ich gepostet und eine ähnliche Frage gefunden. Aber ich weiß nicht, wie ich das umsetzen soll, was in der Antwort erwähnt wurde. – Jason

Antwort

1

Ich sehe, dass Sie den Instanztyp in CF nicht angeben. Der Standardtyp ist m3.medium. Sieht aus wie in der Region, die Sie verwenden m3.medium wird nicht unterstützt für hvm Typ AMI.

Eine Möglichkeit, den Instanztyp angeben: EC2 Instance Type Parameter

+0

halloV, Es funktioniert jetzt. Danke, dass Sie mich auf den Link "EC2 Instance Type Parameter" hingewiesen haben. Soll ich den Arbeitscode posten? Neu in diesem Forum – Jason

+0

Ich kann deine Antwort nicht akzeptieren, da ich nicht genug Abzeichen habe, heißt es – Jason

Verwandte Themen