provider "aws" { profile = "default" region = "eu-west-1" } resource "aws_instance" "example" { ami = "ami-01b282b0f06ba5fd2" instance_type = "t2.micro" tags = { Name = "Test-JBL-tf1" } }