Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Terraform - Resource & Data source

Back


Resource


Data Source


Lab: Ubuntu AMI Data

provider "aws" {
  region = "ca-central-1"
}

data "aws_ami" "ubuntu_ami" {
  most_recent = true

  region = "ca-central-1"

  filter {
    name   = "name"
    values = ["ubuntu/images/hvm-ssd-gp3/ubuntu-noble-24.04-amd64-server-*"]
  }

  filter {
    name   = "virtualization-type"
    values = ["hvm"]
  }

  owners = ["099720109477"] # Canonical
}

output "ami_id" {
  value = data.aws_ami.ubuntu_ami.image_id
}


resource "aws_instance" "ec2_instance" {
  instance_type = "t2.micro"
  ami           = data.aws_ami.ubuntu_ami.id
}