mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
* write-only attributes: internal providers should set write-only attributes to null * add changelog * fix copywrite headers
14 lines
238 B
HCL
14 lines
238 B
HCL
|
|
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
|
|
}
|