mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Changing t1 to t2 and us-east-1 to us-west-2
This commit is contained in:
parent
1cfc27730f
commit
c1d6e36616
@ -15,9 +15,9 @@ and deleted. Instances also support [provisioning](/docs/provisioners/index.html
|
||||
|
||||
```
|
||||
# Create a new instance of the latest Ubuntu 14.04 on an
|
||||
# t1.micro node with an AWS Tag naming it "HelloWorld"
|
||||
# t2.micro node with an AWS Tag naming it "HelloWorld"
|
||||
provider "aws" {
|
||||
region = "us-east-1"
|
||||
region = "us-west-2"
|
||||
}
|
||||
|
||||
data "aws_ami" "ubuntu" {
|
||||
@ -35,7 +35,7 @@ data "aws_ami" "ubuntu" {
|
||||
|
||||
resource "aws_instance" "web" {
|
||||
ami = "${data.aws_ami.ubuntu.id}"
|
||||
instance_type = "t1.micro"
|
||||
instance_type = "t2.micro"
|
||||
tags {
|
||||
Name = "HelloWorld"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user