Skip to content

Commit c644880

Browse files
committed
update docs for new tag
1 parent ee10fa4 commit c644880

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This is done by:
1818
## Usage
1919
```hcl
2020
module "lambda_api" {
21-
source = "../../"
21+
source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v0.0.2"
2222
app_name = "my-lambda"
2323
env = "dev"
2424
codedeploy_service_role_arn = module.acs.power_builder_role.arn

examples/simple-lambda-with-deploy-test/example.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ module "acs" {
88
}
99

1010
module "lambda_api" {
11-
source = "../../"
11+
// source = "../../"
12+
source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v0.0.2"
1213
app_name = "my-lambda"
1314
env = "dev"
1415
codedeploy_service_role_arn = module.acs.power_builder_role.arn

0 commit comments

Comments
 (0)