You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.
41
+
We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.
42
42
43
43
This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself.
44
44
@@ -49,7 +49,7 @@ We have [*fifty plus terraform modules*][terraform_modules]. A few of them are c
@@ -73,7 +73,7 @@ Here are examples of how you can use this module in your inventory structure:
73
73
```hcl
74
74
module "api-gateway" {
75
75
source = "clouddrove/api-gateway/aws"
76
-
version = "0.14.0"
76
+
version = "0.15.0"
77
77
name = "api-gateway"
78
78
environment = "test"
79
79
label_order = ["name", "environment"]
@@ -286,7 +286,7 @@ Here are examples of how you can use this module in your inventory structure:
286
286
| passthrough\_behaviors | The integration passthrough behavior (WHEN\_NO\_MATCH, WHEN\_NO\_TEMPLATES, NEVER). Required if request\_templates is used. |`list(any)`|`[]`| no |
287
287
| path\_parts | The last path segment of this API resource. |`list(any)`|`[]`| no |
288
288
| provider\_arns | required for type COGNITO\_USER\_POOLS) A list of the Amazon Cognito user pool ARNs. Each element is of this format: arn:aws:cognito-idp:{region}:{account\_id}:userpool/{user\_pool\_id}. |`list(any)`|`[]`| no |
289
-
| repository | Terraform current module repo |`string`|`""`| no |
289
+
| repository | Terraform current module repo |`string`|`"https://github.com/clouddrove/terraform-aws-api-gateway"`| no |
290
290
| request\_models | A map of the API models used for the request's content type where key is the content type (e.g. application/json) and value is either Error, Empty (built-in models) or aws\_api\_gateway\_model's name. |`list(any)`|`[]`| no |
291
291
| request\_parameters | A map of request query string parameters and headers that should be passed to the integration. For example: request\_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request. |`list(any)`|`[]`| no |
292
292
| request\_templates | A map of the integration's request templates. |`list(any)`|`[]`| no |
@@ -327,7 +327,7 @@ Here are examples of how you can use this module in your inventory structure:
327
327
328
328
329
329
## Testing
330
-
In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system.
330
+
In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system.
331
331
332
332
You need to run the following command in the testing folder:
333
333
```hcl
@@ -336,7 +336,7 @@ You need to run the following command in the testing folder:
336
336
337
337
338
338
339
-
## Feedback
339
+
## Feedback
340
340
If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/terraform-aws-api-gateway/issues), or feel free to drop us an email at [hello@clouddrove.com](mailto:hello@clouddrove.com).
341
341
342
342
If you have found it worth your time, go ahead and give us a ★ on [our GitHub](https://github.com/clouddrove/terraform-aws-api-gateway)!
0 commit comments