terraform/internal/command/testdata/test/write-only-attributes/main.tf
Liam Cervante 7fadbe34de
write-only attributes: internal providers should set write-only attributes to null (#36824)
* write-only attributes: internal providers should set write-only attributes to null

* add changelog

* fix copywrite headers
2025-04-02 15:58:42 +02:00

9 lines
122 B
HCL

variable "input" {
type = string
}
resource "test_resource" "resource" {
id = "resource"
write_only = var.input
}