receita-provider/example/receitas.tf
2023-12-19 23:31:44 +00:00

16 lines
273 B
HCL

terraform {
required_providers {
receita = {
source = "terraform.local/balhau/receita"
}
}
}
provider "receita" {
endpoint = "http://localhost:9999"
}
resource "receita_receita" "receita_one" {
name = "Bola de carne"
author = "Maria Bacalhau"
}