From 73002607ab3b10acb44c8a81df208483282ba23e Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Tue, 1 Jul 2025 00:46:10 -0400 Subject: [PATCH] fix: clean up llm drivel --- deploy/oracle/main.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deploy/oracle/main.tf b/deploy/oracle/main.tf index f94361f..1e5eea0 100644 --- a/deploy/oracle/main.tf +++ b/deploy/oracle/main.tf @@ -31,10 +31,9 @@ data "oci_core_images" "ubuntu_image" { operating_system = "Canonical Ubuntu" # Adjust this version if you prefer a different Ubuntu LTS (e.g., "24.04") operating_system_version = "24.04" - shape_filter = var.instance_shape # Filter by the shape to ensure compatibility + shape = var.instance_shape # Filter by the shape to ensure compatibility sort_by = "TIMECREATED" sort_order = "DESC" - limit = 1 # Get only the latest } # resource "oci_core_image" "my_custom_image" {