terraform/internal/stacks/stackruntime/testdata/mainbundle/test/with-module/with-module.tfcomponent.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
374 B
HCL
Raw Permalink Normal View History

required_providers {
testing = {
source = "hashicorp/testing"
version = "0.1.0"
}
}
provider "testing" "default" {}
variable "input" {
type = string
}
variable "id" {
type = string
default = null
}
component "self" {
source = "./"
providers = {
testing = provider.testing.default
}
inputs = {
id = var.id
input = var.input
}
}