do stuff (supposedly)

This commit is contained in:
nora 2024-04-12 21:15:24 +02:00
parent f9da7ebe43
commit c4e62f9d2d
12 changed files with 437 additions and 79 deletions

View file

@ -10,8 +10,17 @@ provider "terustform" {}
//resource "terustform_hello" "test1" {}
data "terustform_kitty" "kitty" {}
data "terustform_kitty" "kitty" {
name = "mykitten"
}
data "terustform_kitty" "hellyes" {
name = "a cute kitty"
}
output "meow" {
value = data.terustform_kitty.kitty.kitten
value = data.terustform_kitty.kitty.id
}
output "hellyes" {
value = data.terustform_kitty.kitty.meow
}