Compare commits

...

3 Commits

Author SHA1 Message Date
Ryan Malloy 4d5bf579f3 fix typo 2024-11-09 12:56:59 -07:00
Ryan Malloy 96b12f0d61 fix typo 2024-11-09 12:56:56 -07:00
Ryan Malloy 2f9e17c50a fix typo 2024-11-09 12:56:51 -07:00
3 changed files with 16 additions and 12 deletions

25
main.tf
View File

@ -122,23 +122,24 @@ data "aws_ami" "latest_ecs" {
}
data "aws_ami" "ubuntu" {
most_recent = true
owners = ["099720109477"] # Cannonical / Ubuntu
most_recent = true
owners = ["099720109477"]
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-24.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
# Ubuntu AMI ID search
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd-gp3/ubuntu-noble-24.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
resource "aws_instance" "ubuntu_instance" {
ami = data.aws_ami.ubuntu.ami # Ubuntu "ami-0a0e5d9c7acc336f1"
ami = data.aws_ami.ubuntu.id
# Ubuntu "ami-0a0e5d9c7acc336f1"
# ami = data.aws_ami.latest_ecs.ami # Amazon Linux
instance_type = var.instance_size
subnet_id = aws_subnet.public_subnet.id

View File

@ -6,6 +6,7 @@ output "ubuntu_ami" {
output "private_key" {
value = tls_private_key.ssh_key.private_key_pem
description = "SSH Private Key (PEM format)"
sensitive = true
}
output "public_key" {

View File

@ -44,9 +44,11 @@ variable "aws_region" {
variable "aws_access_key" {
description = "AWS Access Key"
type = string
sensitive = true
}
variable "aws_secret_key" {
description = "AWS Secret Key"
type = string
sensitive = true
}