Skip to content

Commit

Permalink
Adds capacity reservation module
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelhar committed Nov 12, 2024
1 parent ae94d1f commit 72e7762
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions modules/capacity-reservation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# capacity-reservation

<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements

No requirements.

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_terraform"></a> [terraform](#provider\_terraform) | n/a |

## Modules

No modules.

## Resources

| Name | Type |
|------|------|
| [aws_ec2_capacity_reservation.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ec2_capacity_reservation) | resource |
| [terraform_data.describe_capacity_reservation](https://registry.terraform.io/providers/hashicorp/terraform/latest/docs/resources/data) | resource |
| [aws_availability_zone.zone_ids](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/availability_zone) | data source |
| [aws_ec2_instance_type_offerings.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ec2_instance_type_offerings) | data source |

## Inputs

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_node_groups"></a> [node\_groups](#input\_node\_groups) | Additional EKS managed node groups definition. | <pre>map(object({<br> instance_types = list(string)<br> spot = optional(bool, false)<br> capacity = number<br> availability_zone_ids = list(string)<br> }))</pre> | `{}` | no |
| <a name="input_region"></a> [region](#input\_region) | AWS region for the deployment | `string` | n/a | yes |

## Outputs

| Name | Description |
|------|-------------|
| <a name="output_capacity_reservation"></a> [capacity\_reservation](#output\_capacity\_reservation) | n/a |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

0 comments on commit 72e7762

Please sign in to comment.