mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
* implement module testing via TFC * ready for review * fix static checks * licence headers
9 lines
147 B
HCL
9 lines
147 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
default = "Hello, world!"
|
|
}
|
|
|
|
resource "tfcoremock_simple_resource" "resource" {
|
|
string = var.input
|
|
}
|