mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
18 lines
246 B
HCL
18 lines
246 B
HCL
component "self" {
|
|
source = "./"
|
|
inputs = {
|
|
value = plantimestamp()
|
|
}
|
|
}
|
|
|
|
component "second-self" {
|
|
source = "./"
|
|
inputs = {
|
|
value = plantimestamp()
|
|
}
|
|
}
|
|
|
|
output "plantimestamp" {
|
|
type = string
|
|
value = plantimestamp()
|
|
}
|