blob: 3f80d47a4ab1479b65f436fec36edf35dd9c0e37 [file] [log] [blame]
variable "input" {
type = string
}
data "test_data_source" "datasource" {
id = "resource"
write_only = var.input
}
resource "test_resource" "resource" {
value = data.test_data_source.datasource.value
write_only = var.input
}