Skip to content

Commit

Permalink
change output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Dugar committed Sep 24, 2019
1 parent e8d3f95 commit a32eea7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Here are some examples of how you can use this module in your inventory structur
### FIFO Queue
```hcl
module "sqs" {
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git"
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git?ref=tags/0.12.1"
name = "sqs-fifo"
application = "clouddrove"
environment = "test"
Expand All @@ -82,7 +82,7 @@ Here are some examples of how you can use this module in your inventory structur
### Standard Queue
```hcl
module "sqs" {
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git"
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git?ref=tags/0.12.1"
name = "sqs"
application = "clouddrove"
environment = "test"
Expand Down
4 changes: 2 additions & 2 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ usage : |-
### FIFO Queue
```hcl
module "sqs" {
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git"
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git?ref=tags/0.12.1"
name = "sqs-fifo"
application = "clouddrove"
environment = "test"
Expand All @@ -49,7 +49,7 @@ usage : |-
### Standard Queue
```hcl
module "sqs" {
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git"
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git?ref=tags/0.12.1"
name = "sqs"
application = "clouddrove"
environment = "test"
Expand Down
2 changes: 1 addition & 1 deletion _example/fifo/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "sqs" {
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git"
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git?ref=tags/0.12.1"

name = "sqs-fifo"
application = "clouddrove"
Expand Down
2 changes: 1 addition & 1 deletion _example/standard/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "sqs" {
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git"
source = "git::https://github.com/clouddrove/terraform-aws-sqs.git?ref=tags/0.12.1"

name = "sqs"
application = "clouddrove"
Expand Down

0 comments on commit a32eea7

Please sign in to comment.