mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-22 14:51:50 -04:00
10 lines
147 B
Terraform
10 lines
147 B
Terraform
|
|
|
||
|
|
variable "input" {
|
||
|
|
type = string
|
||
|
|
default = "Hello, world!"
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "tfcoremock_simple_resource" "resource" {
|
||
|
|
string = var.input
|
||
|
|
}
|