mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
16 lines
228 B
HCL
16 lines
228 B
HCL
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
|
|
provider "testing" "default" {}
|
|
|
|
component "self" {
|
|
source = "./"
|
|
|
|
providers = {
|
|
testing = provider.testing.default
|
|
}
|
|
}
|