Skip to content

Commit c608bbe

Browse files
author
Steven Nemetz
committed
Improving doc
1 parent 629b3b5 commit c608bbe

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Terraform registry: https://registry.terraform.io/modules/devops-workflow/label/
1212

1313
## Usage:
1414

15-
### Basic Example
15+
#### Basic Example
1616

1717
```hcl
1818
module "name" {
@@ -24,7 +24,7 @@ module "name" {
2424
```
2525
This will create an `id` with the value of `qa-name`
2626

27-
### S3 Example
27+
#### S3 Example
2828

2929
```hcl
3030
module "s3-name" {
@@ -44,9 +44,10 @@ Now reference `label` outputs to create the S3 bucket
4444
resource "aws_s3_bucket" "data" {
4545
bucket = "${module.s3-name.id}"
4646
tags = "${module.s3-name.tags}"
47+
}
4748
```
4849

49-
### All Variables Example
50+
#### All Variables Example
5051
Using in a module and exposing all settings to upstream caller.
5152

5253
```hcl

0 commit comments

Comments
 (0)