mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-24 23:57:34 -04:00
* write-only attributes: internal providers should set write-only attributes to null * add changelog * fix copywrite headers
9 lines
122 B
HCL
9 lines
122 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
id = "resource"
|
|
write_only = var.input
|
|
}
|