From d2efb111efebc2d8244c338f5c9cd6a3c3e61518 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 28 Jun 2024 12:40:27 +0000 Subject: [PATCH] terraform-docs: automated action --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 30e1959..9fd7e49 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ Deploys an etcd cluster in AWS on Flatcar Linux. Outputs node information and AL | Name | Version | |------|---------| | [aws](#provider\_aws) | >= 4.0.0 | -| [ct](#provider\_ct) | 0.10.0 | | [random](#provider\_random) | n/a | | [tls](#provider\_tls) | n/a | @@ -41,21 +40,22 @@ No modules. | [random_id.index](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/id) | resource | | [random_string.random_prefix](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | resource | | [tls_private_key.ssh_key_etcd](https://registry.terraform.io/providers/hashicorp/tls/latest/docs/resources/private_key) | resource | -| [aws_ami.flatcar_stable_latest](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami) | data source | +| [aws_ami.main](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami) | data source | | [aws_subnets.private](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/subnets) | data source | | [aws_subnets.public](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/subnets) | data source | -| [ct_config.etcd-ignitions](https://registry.terraform.io/providers/poseidon/ct/0.10.0/docs/data-sources/config) | data source | ## Inputs | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| +| [ami\_architecture](#input\_ami\_architecture) | The architecture of the AMI to use for the etcd cluster. | `string` | `"x86_64"` | no | +| [ami\_name\_filter](#input\_ami\_name\_filter) | The name of the AMI to use for the etcd cluster. | `string` | `"amzn2-ami-hvm*"` | no | +| [ami\_owner\_id](#input\_ami\_owner\_id) | The AMI ID to use for the etcd cluster. | `string` | `"amazon"` | no | | [cluster\_name](#input\_cluster\_name) | The name of the etcd cluster. | `string` | n/a | yes | | [disk\_iops](#input\_disk\_iops) | IOPS of the EBS volume (e.g. 3000) | `number` | `3000` | no | | [disk\_size](#input\_disk\_size) | Size of the EBS volume in GB | `number` | `30` | no | | [disk\_type](#input\_disk\_type) | Type of the EBS volume (e.g. standard, gp2, gp3, io1) | `string` | `"gp3"` | no | | [domain\_name](#input\_domain\_name) | The domain to use for etcd DNS. | `string` | `"etcd.local"` | no | -| [etcd\_snippets](#input\_etcd\_snippets) | Etcd Container Linux Config snippets | `list(string)` | `[]` | no | | [instance\_type](#input\_instance\_type) | EC2 Instance Type | `string` | `"t3.small"` | no | | [node\_count](#input\_node\_count) | The number of nodes in the cluster. | `number` | `3` | no | | [region](#input\_region) | The region in which to create the cluster. | `string` | `"us-east-1"` | no | @@ -66,7 +66,6 @@ No modules. | Name | Description | |------|-------------| -| [ct\_configs](#output\_ct\_configs) | ETCD Ignition configs | | [etcd-endpoint](#output\_etcd-endpoint) | ALB endpoint | | [etcd\_security\_group\_id](#output\_etcd\_security\_group\_id) | The security group for etcd nodes | | [etcd\_ssh\_private\_key](#output\_etcd\_ssh\_private\_key) | n/a |