20 lines
386 B
Terraform
20 lines
386 B
Terraform
|
#QUESTION: Create the instance with name "inst2-studentid" passed in a variable
|
||
|
#####################
|
||
|
|
||
|
variable "instance-name" {
|
||
|
default = "inst2-cedric"
|
||
|
}
|
||
|
|
||
|
provider "aws" {
|
||
|
region = "eu-west-2"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "inst2" {
|
||
|
ami = "ami-01a6e31ac994bbc09"
|
||
|
instance_type = "t2.micro"
|
||
|
key_name = "cedric"
|
||
|
tags = {
|
||
|
Name = "${var.instance-name}"
|
||
|
}
|
||
|
}
|