16 lines
266 B
HCL
16 lines
266 B
HCL
terraform {
|
|
required_providers {
|
|
receita = {
|
|
source = "terraform.local/local/receita"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "receitas" {
|
|
endpoint = "localhost:9999"
|
|
}
|
|
|
|
resource "receita_receita" "receita_one" {
|
|
name = "Bola de carne"
|
|
author = "Maria Bacalhau"
|
|
}
|