Compare commits
3 Commits
3e3178365d
...
4d5bf579f3
Author | SHA1 | Date |
---|---|---|
Ryan Malloy | 4d5bf579f3 | |
Ryan Malloy | 96b12f0d61 | |
Ryan Malloy | 2f9e17c50a |
25
main.tf
25
main.tf
|
@ -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
|
||||
|
|
|
@ -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" {
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue