Skip to content

Commit

Permalink
terraform: add fallback to droplet_size output
Browse files Browse the repository at this point in the history
  • Loading branch information
geloman committed Nov 19, 2024
1 parent 2d8488e commit 796a6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ output "droplet_ipv4_address" {
}

output "droplet_size" {
value = digitalocean_droplet.droplet.size
value = try(digitalocean_droplet.droplet.size, null)
}

0 comments on commit 796a6d9

Please sign in to comment.