support simple types

This commit is contained in:
nora 2024-04-10 21:48:30 +02:00
parent 69daf83c53
commit 18a9d610cd
7 changed files with 173 additions and 20 deletions

View file

@ -8,4 +8,10 @@ terraform {
provider "terustform" {}
resource "terustform_hello" "test1" {}
//resource "terustform_hello" "test1" {}
data "terustform_kitty" "kitty" {}
output "meow" {
value = data.terustform_kitty.kitty.kitten
}