workspace

This commit is contained in:
nora 2024-04-14 22:03:39 +02:00
parent 43747f9cda
commit eea39e1f16
22 changed files with 166 additions and 107 deletions

View file

@ -0,0 +1,24 @@
terraform {
required_providers {
example = {
source = "github.com/Nilstrieb/example"
}
}
}
provider "example" {}
//resource "terustform_hello" "test1" {}
data "example_kitty" "kitty" {
name = "aa mykitten"
}
data "example_kitty" "hellyes" {
name = "aa a cute kitty"
}
output "cat1" {
value = data.example_kitty.kitty.meow
}
output "cat2" {
value = data.example_kitty.hellyes.meow
}