Skip to content

Commit

Permalink
feat(oci): add output debug
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <[email protected]>
  • Loading branch information
shanduur committed Jan 24, 2025
1 parent 5880820 commit 9237908
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions terraform/oci/modules/always_free/always_free.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ data "oci_core_images" "instance_images" {
shape = var.instance_shape
}

output "debug" {
value = data.oci_core_images.instance_images.images
}

locals {
count = var.instance_shape == "VM.Standard.E2.1.Micro" ? 2 : 1
ocpus = var.instance_shape == "VM.Standard.E2.1.Micro" ? 1 : 4
Expand Down

0 comments on commit 9237908

Please sign in to comment.