mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
20 lines
266 B
HCL
20 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
|
||
|
|
}
|
||
|
|
}
|