mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-09 01:40:40 -04:00
19 lines
266 B
HCL
19 lines
266 B
HCL
required_providers {
|
|
terraform = {
|
|
source = "terraform.io/builtin/terraform"
|
|
}
|
|
}
|
|
|
|
provider "terraform" "default" {}
|
|
|
|
component "self" {
|
|
source = "./"
|
|
|
|
providers = {
|
|
terraform = provider.terraform.default
|
|
}
|
|
|
|
inputs = {
|
|
input = var.input
|
|
}
|
|
}
|