mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -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
|
|
}
|