Changing virtualization type in documentation for aws_instance
This commit is contained in:
parent
b79aea491b
commit
1cfc27730f
|
@ -24,11 +24,11 @@ data "aws_ami" "ubuntu" {
|
|||
most_recent = true
|
||||
filter {
|
||||
name = "name"
|
||||
values = ["ubuntu/images/ebs/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
}
|
||||
filter {
|
||||
name = "virtualization-type"
|
||||
values = ["paravirtual"]
|
||||
values = ["hvm"]
|
||||
}
|
||||
owners = ["099720109477"] # Canonical
|
||||
}
|
||||
|
|
|
@ -17,11 +17,11 @@ data "aws_ami" "ubuntu" {
|
|||
most_recent = true
|
||||
filter {
|
||||
name = "name"
|
||||
values = ["ubuntu/images/ebs/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
}
|
||||
filter {
|
||||
name = "virtualization-type"
|
||||
values = ["paravirtual"]
|
||||
values = ["hvm"]
|
||||
}
|
||||
owners = ["099720109477"] # Canonical
|
||||
}
|
||||
|
@ -48,11 +48,11 @@ data "aws_ami" "ubuntu" {
|
|||
most_recent = true
|
||||
filter {
|
||||
name = "name"
|
||||
values = ["ubuntu/images/ebs/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
}
|
||||
filter {
|
||||
name = "virtualization-type"
|
||||
values = ["paravirtual"]
|
||||
values = ["hvm"]
|
||||
}
|
||||
owners = ["099720109477"] # Canonical
|
||||
}
|
||||
|
@ -95,11 +95,11 @@ data "aws_ami" "ubuntu" {
|
|||
most_recent = true
|
||||
filter {
|
||||
name = "name"
|
||||
values = ["ubuntu/images/ebs/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
|
||||
}
|
||||
filter {
|
||||
name = "virtualization-type"
|
||||
values = ["paravirtual"]
|
||||
values = ["hvm"]
|
||||
}
|
||||
owners = ["099720109477"] # Canonical
|
||||
}
|
||||
|
@ -221,4 +221,4 @@ Launch configurations can be imported using the `name`, e.g.
|
|||
|
||||
```
|
||||
$ terraform import aws_launch_configuration.as_conf terraform-lg-123456
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue