mirror of https://github.com/hashicorp/terraform
parent
256e575324
commit
ebff0a4683
@ -0,0 +1,6 @@
|
||||
variable "example" { # ERROR: Const variable cannot be ephemeral
|
||||
type = string
|
||||
default = "hello"
|
||||
const = true
|
||||
ephemeral = true
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
variable "example" { # ERROR: Const variable cannot be sensitive
|
||||
type = string
|
||||
default = "hello"
|
||||
const = true
|
||||
sensitive = true
|
||||
}
|
||||
Loading…
Reference in new issue