We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629b3b5 commit c608bbeCopy full SHA for c608bbe
README.md
@@ -12,7 +12,7 @@ Terraform registry: https://registry.terraform.io/modules/devops-workflow/label/
12
13
## Usage:
14
15
-### Basic Example
+#### Basic Example
16
17
```hcl
18
module "name" {
@@ -24,7 +24,7 @@ module "name" {
24
```
25
This will create an `id` with the value of `qa-name`
26
27
-### S3 Example
+#### S3 Example
28
29
30
module "s3-name" {
@@ -44,9 +44,10 @@ Now reference `label` outputs to create the S3 bucket
44
resource "aws_s3_bucket" "data" {
45
bucket = "${module.s3-name.id}"
46
tags = "${module.s3-name.tags}"
47
+}
48
49
-### All Variables Example
50
+#### All Variables Example
51
Using in a module and exposing all settings to upstream caller.
52
53
0 commit comments