Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecate separated ecs ec2 module #50

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions modules/aws_ecs_ec2/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# AWS ECS + EC2 Module
# ⚠️ DEPRECATION NOTICE ⚠️

This module is no longer maintained, use aws_ecs modules instead with `launch_type` set to `EC2`.


## AWS ECS + EC2 Module

This module deploys an ECS cluster with autoscaling group of EC2 instances.

# Usage
## Usage

1. Directly use our module in your existing Terraform configuration and provide the required variables

Expand Down Expand Up @@ -38,19 +43,19 @@ module "retool" {

8. You should now find a Load Balancer in your AWS EC2 Console associated with the deployment. The instance address should now be running Retool.

## Common Configuration
### Common Configuration

### Instances
#### Instances

**EC2 Instance Size**
To configure the EC instance size, set the `instance_type` input variable (e.g. `t2.large`).

**RDS Instance Class**
To configure the RDS instance class, set the `instance_class` input variable (e.g. `db.m6g.large`).

## Advanced Configuration
### Advanced Configuration

### Security Groups
#### Security Groups

To customize the ingress and egress rules on the security groups, you can override specific input variable defaults.

Expand Down Expand Up @@ -99,7 +104,7 @@ ec2_egress_rules = [
]
```

### Environment Variables
#### Environment Variables

To add additional [Retool environment variables](https://docs.retool.com/docs/environment-variables) to your deployment, populate the `additional_env_vars` input variable into the module.

Expand Down