mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
33 lines
441 B
HCL
33 lines
441 B
HCL
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
|
|
provider "testing" "default" {}
|
|
|
|
variable "unknown" {
|
|
type = string
|
|
}
|
|
|
|
component "self" {
|
|
source = "./"
|
|
providers = {
|
|
testing = provider.testing.default
|
|
}
|
|
inputs = {
|
|
id = "self"
|
|
}
|
|
}
|
|
|
|
component "unknown" {
|
|
source = "./"
|
|
providers = {
|
|
testing = provider.testing.default
|
|
}
|
|
|
|
inputs = {
|
|
id = var.unknown
|
|
}
|
|
}
|