https://github.com/labd/terraform-module-commercetools-mc-app
https://github.com/labd/terraform-module-commercetools-mc-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/labd/terraform-module-commercetools-mc-app
- Owner: labd
- Created: 2021-02-18T08:48:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T15:46:52.000Z (over 3 years ago)
- Last Synced: 2024-12-31T19:29:55.116Z (over 1 year ago)
- Language: HCL
- Size: 20.5 KB
- Stars: 3
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-module-commercetools-mc-app
This module creates the resources needed within AWS to host your custom merchant center app
```hcl
module "merchant_center_app" {
source = "https://github.com/labd/terraform-module-commercetools-mc-app.git"
name = "my-merchant-center-app"
external_api_url = "https://example.org/my-graphl-server"
version_name = var.component_version
package = {
bucket = local.lambda_s3_repository
key = local.mc_app_s3_key
}
providers = {
aws = aws
aws.us-east-1 = aws.us-east-1
}
}
```