Skip to content

Getting Started

Apró Modules is a collection of Terraform modules designed to simplify the process of deploying and managing AWS resources. This documentation provides an overview of the modules available, their inputs, outputs, and usage examples.

The modules are stored in an S3 bucket and can only be accessed by users in specified AWS organizations.

Usage

To use the Apró Modules in your Terraform configurations, you can reference them using the S3 bucket URL.

Here's a basic example of how to use the modules:

Terraform:

module "my_service" {
    source = "s3::https://apro-terraform-modules.s3.eu-west-1.amazonaws.com/v1.0.0/ecs_service.zip"
}

Terragrunt:

terraform {
  source = "s3::https://apro-terraform-modules.s3.eu-west-1.amazonaws.com/v1.0.0/ecs_service.zip"
}

Replace v1.0.0 with the desired version of the module you want to use.