AWS App Runner Terraform module
Terraform module which creates AWS App Runner resources.
Usage
See examples directory for working examples to reference:
AppRunner Common/Shared Configurations
module "app_runner_shared_configs" {
source = "terraform-aws-modules/app-runner/aws"
# Disable service resources
create_service = false
connections = {
# The AWS Connector for GitHub connects to your GitHub account is a one-time setup,
# You can reuse the connection for creating multiple App Runner services based on repositories in this account.
# After creation, you must complete the authentication handshake using the App Runner console.
github = {
provider_type = "GITHUB"
}
}
auto_scaling_configurations = {
mini = {
name = "mini"
max_concurrency = 20
max_size = 5
min_size = 1
tags = {
Type = "Mini"
}
}
mega = {
name = "mega"
max_concurrency = 200
max_size = 25
min_size = 5
tags = {
Type = "MEGA"
}
}
}
tags = {
Terraform = "true"
Environment = "dev"
}
}
Code Based AppRunner Service
module "app_runner_code_base" {
source = "terraform-aws-modules/app-runner/aws"
service_name = "example-code-base"
# From shared configs created above
auto_scaling_configuration_arn = module.app_runner_shared_configs.auto_scaling_configurations["mini"].arn
source_configuration = {
authentication_configuration = {
# From shared configs created above
connection_arn = module.app_runner_shared_configs.connections["github"].arn
}
auto_deployments_enabled = false
code_repository = {
code_configuration = {
configuration_source = "REPOSITORY"
}
repository_url = "https://github.com/aws-containers/hello-app-runner"
source_code_version = {
type = "BRANCH"
value = "main"
}
}
}
tags = {
Terraform = "true"
Environment = "dev"
}
}
Image Based AppRunner Service
module "app_runner_image_base" {
source = "terraform-aws-modules/app-runner/aws"
service_name = "example-image-base"
# From shared configs
auto_scaling_configuration_arn = module.app_runner_shared_configs.auto_scaling_configurations["mega"].arn
# IAM instance profile permissions to access secrets
instance_policy_statements = {
GetSecretValue = {
actions = ["secretsmanager:GetSecretValue"]
resources = [aws_secretsmanager_secret.this.arn]
}
}
source_configuration = {
auto_deployments_enabled = false
image_repository = {
image_configuration = {
port = 8000
runtime_environment_variables = {
MY_VARIABLE = "hello!"
}
runtime_environment_secrets = {
MY_SECRET = aws_secretsmanager_secret.this.arn
}
}
image_identifier = "public.ecr.aws/aws-containers/hello-app-runner:latest"
image_repository_type = "ECR_PUBLIC"
}
}
create_vpc_connector = true
vpc_connector_subnets = ["subnet-abcde012", "subnet-bcde012a", "subnet-fghi345a"]
vpc_connector_security_groups = ["sg-12345678"]
network_configuration = {
egress_configuration = {
egress_type = "VPC"
}
}
enable_observability_configuration = true
tags = {
Terraform = "true"
Environment = "dev"
}
}
Private AppRunner Service
module "app_runner_private" {
source = "terraform-aws-modules/app-runner/aws"
service_name = "example-private"
...
# Ingress
create_ingress_vpc_connection = true
ingress_vpc_id = "vpc-12345678"
ingress_vpc_endpoint_id = "vpce-01234567890123456 s"
# Egress
create_vpc_connector = true
vpc_connector_subnets = ["subnet-abcde012", "subnet-bcde012a", "subnet-fghi345a"]
vpc_connector_security_groups = ["sg-12345678"]
network_configuration = {
ingress_configuration = {
is_publicly_accessible = false
}
egress_configuration = {
egress_type = "VPC"
}
}
tags = {
Terraform = "true"
Environment = "dev"
}
}
Examples
Examples codified under the examples are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module. If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!
License
Apache-2.0 Licensed. See LICENSE.