mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 04:48:33 +07:00
20 lines
310 B
HCL
20 lines
310 B
HCL
/**
|
|
* Usage:
|
|
*
|
|
* module "foo" {
|
|
* source = "github.com/foo/bar"
|
|
*
|
|
* id = "1234567890"
|
|
* name = "baz"
|
|
*
|
|
* zones = ["us-east-1", "us-west-1"]
|
|
*
|
|
* tags = {
|
|
* Name = "baz"
|
|
* Created-By = "first.last@email.com"
|
|
* Date-Created = "20180101"
|
|
* }
|
|
* }
|
|
*
|
|
*/
|