mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-03 05:50:43 -05:00
29 lines
366 B
HCL
29 lines
366 B
HCL
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
|
|
provider "testing" "default" {}
|
|
|
|
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
variable "resource" {
|
|
type = string
|
|
}
|
|
|
|
component "self" {
|
|
source = "./"
|
|
|
|
providers = {
|
|
testing = provider.testing.default
|
|
}
|
|
|
|
inputs = {
|
|
id = var.id
|
|
resource = var.resource
|
|
}
|
|
}
|