add template for directives
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
variable "sensitive_var" {
|
||||
default = "foo"
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "another_var" {
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
module "child" {
|
||||
source = "./child"
|
||||
foo = var.sensitive_var
|
||||
bar = var.another_var
|
||||
}
|
||||
Reference in New Issue
Block a user