Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sohan yadava committed Dec 26, 2019
1 parent 4225036 commit dab2d16
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Here are some examples of how you can use this module in your inventory structur
### Basic Function
```hcl
module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"
name = "lambda"
application = "clouddrove"
environment = "test"
Expand All @@ -89,7 +89,7 @@ Here are some examples of how you can use this module in your inventory structur
### Basic S3 Function
```hcl
module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"
name = "lambda"
application = "clouddrove"
environment = "test"
Expand All @@ -107,7 +107,7 @@ Here are some examples of how you can use this module in your inventory structur
### Complete Function
```hcl
module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"
name = "lambda"
application = "clouddrove"
environment = "test"
Expand Down
6 changes: 3 additions & 3 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ usage : |-
### Basic Function
```hcl
module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"
name = "lambda"
application = "clouddrove"
environment = "test"
Expand All @@ -54,7 +54,7 @@ usage : |-
### Basic S3 Function
```hcl
module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"
name = "lambda"
application = "clouddrove"
environment = "test"
Expand All @@ -72,7 +72,7 @@ usage : |-
### Complete Function
```hcl
module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"
name = "lambda"
application = "clouddrove"
environment = "test"
Expand Down
2 changes: 1 addition & 1 deletion _example/basic-function/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"

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

module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"

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

module "lambda" {
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.0"
source = "git::https://github.com/clouddrove/terraform-aws-lambda.git?ref=tags/0.12.2"

name = "lambda"
application = "clouddrove"
Expand Down

0 comments on commit dab2d16

Please sign in to comment.