{"id":13505667,"url":"https://github.com/terraform-aws-modules/terraform-aws-rds-proxy","last_synced_at":"2025-06-17T04:39:24.799Z","repository":{"id":41977033,"uuid":"326849201","full_name":"terraform-aws-modules/terraform-aws-rds-proxy","owner":"terraform-aws-modules","description":"Terraform module to create AWS RDS Proxy resources 🇺🇦","archived":false,"fork":false,"pushed_at":"2025-05-22T09:51:39.000Z","size":93,"stargazers_count":60,"open_issues_count":0,"forks_count":56,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-25T16:11:26.258Z","etag":null,"topics":["aws","aws-rds-proxy","rds-proxy","serverless","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/terraform-aws-modules/rds-proxy/aws","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/terraform-aws-modules.png","metadata":{"funding":{"github":["antonbabenko"],"custom":"https://www.paypal.me/antonbabenko"},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-05T01:10:09.000Z","updated_at":"2025-05-22T09:51:41.000Z","dependencies_parsed_at":"2024-01-03T02:26:48.372Z","dependency_job_id":"582d8222-8a6b-4326-999a-c8d07997e533","html_url":"https://github.com/terraform-aws-modules/terraform-aws-rds-proxy","commit_stats":{"total_commits":30,"total_committers":8,"mean_commits":3.75,"dds":0.4,"last_synced_commit":"56a832c60ddfb5b09083ea74899c123bd3369567"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/terraform-aws-modules/terraform-aws-rds-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-rds-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-rds-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-rds-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-rds-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terraform-aws-modules","download_url":"https://codeload.github.com/terraform-aws-modules/terraform-aws-rds-proxy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-rds-proxy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260294181,"owners_count":22987600,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-rds-proxy","rds-proxy","serverless","terraform-module"],"created_at":"2024-08-01T00:01:11.353Z","updated_at":"2025-06-17T04:39:24.783Z","avatar_url":"https://github.com/terraform-aws-modules.png","language":"HCL","funding_links":["https://github.com/sponsors/antonbabenko","https://www.paypal.me/antonbabenko"],"categories":["Community Modules"],"sub_categories":["Miscellaneous"],"readme":"# AWS RDS Proxy Terraform module\n\nTerraform module which creates an AWS RDS Proxy and its supporting resources.\n\n## Usage\n\nSee [`examples`](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/tree/master/examples) directory for working examples to reference:\n\n```hcl\nmodule \"rds_proxy\" {\n  source = \"terraform-aws-modules/rds-proxy/aws\"\n\n  name                   = \"rds-proxy\"\n  iam_role_name          = \"rds-proxy-role\"\n  vpc_subnet_ids         = [\"subnet-30ef7b3c\", \"subnet-1ecda77b\", \"subnet-ca09ddbc\"]\n  vpc_security_group_ids = [\"sg-f1d03a88\"]\n\n  endpoints = {\n    read_write = {\n      name                   = \"read-write-endpoint\"\n      vpc_subnet_ids         = [\"subnet-30ef7b3c\", \"subnet-1ecda77b\", \"subnet-ca09ddbc\"]\n      vpc_security_group_ids = [\"sg-f1d03a88\"]\n    },\n    read_only = {\n      name                   = \"read-only-endpoint\"\n      vpc_subnet_ids         = [\"subnet-30ef7b3c\", \"subnet-1ecda77b\", \"subnet-ca09ddbc\"]\n      vpc_security_group_ids = [\"sg-f1d03a88\"]\n      target_role            = \"READ_ONLY\"\n    }\n  }\n\n  auth = {\n    \"superuser\" = {\n      description        = \"Aurora PostgreSQL superuser password\"\n      secret_arn         = \"arn:aws:secretsmanager:us-east-1:123456789012:secret:superuser-6gsjLD\"\n    }\n  }\n\n  # Target Aurora cluster\n  engine_family         = \"POSTGRESQL\"\n  target_db_cluster     = true\n  db_cluster_identifier = \"my-endpoint\"\n\n  tags = {\n    Terraform   = \"true\"\n    Environment = \"dev\"\n  }\n}\n```\n\n## Examples\n\nExamples codified under the [`examples`](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/tree/master/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(s). 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!\n\n- [IAM auth. w/ MySQL Aurora cluster](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/tree/master/examples/mysql-iam-cluster)\n- [IAM auth. w/ MySQL RDS instance](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/tree/master/examples/mysql-iam-instance)\n- [IAM auth. w/ PostgreSQL Aurora cluster](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/tree/master/examples/postgresql-iam-cluster)\n- [IAM auth. w/ PostgreSQL RDS instance](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/tree/master/examples/postgresql-iam-instance)\n\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 1.0 |\n| \u003ca name=\"requirement_aws\"\u003e\u003c/a\u003e [aws](#requirement\\_aws) | \u003e= 5.0 |\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_aws\"\u003e\u003c/a\u003e [aws](#provider\\_aws) | \u003e= 5.0 |\n\n## Modules\n\nNo modules.\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [aws_cloudwatch_log_group.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_log_group) | resource |\n| [aws_db_proxy.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_proxy) | resource |\n| [aws_db_proxy_default_target_group.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_proxy_default_target_group) | resource |\n| [aws_db_proxy_endpoint.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_proxy_endpoint) | resource |\n| [aws_db_proxy_target.db_cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_proxy_target) | resource |\n| [aws_db_proxy_target.db_instance](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_proxy_target) | resource |\n| [aws_iam_role.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) | resource |\n| [aws_iam_role_policy.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy) | resource |\n| [aws_iam_policy_document.assume_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) | data source |\n| [aws_iam_policy_document.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) | data source |\n| [aws_partition.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/partition) | data source |\n| [aws_region.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/region) | data source |\n| [aws_service_principal.rds](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/service_principal) | data source |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_auth\"\u003e\u003c/a\u003e [auth](#input\\_auth) | Configuration block(s) with authorization mechanisms to connect to the associated instances or clusters | `any` | `{}` | no |\n| \u003ca name=\"input_connection_borrow_timeout\"\u003e\u003c/a\u003e [connection\\_borrow\\_timeout](#input\\_connection\\_borrow\\_timeout) | The number of seconds for a proxy to wait for a connection to become available in the connection pool | `number` | `null` | no |\n| \u003ca name=\"input_create\"\u003e\u003c/a\u003e [create](#input\\_create) | Whether cluster should be created (affects nearly all resources) | `bool` | `true` | no |\n| \u003ca name=\"input_create_iam_policy\"\u003e\u003c/a\u003e [create\\_iam\\_policy](#input\\_create\\_iam\\_policy) | Determines whether an IAM policy is created | `bool` | `true` | no |\n| \u003ca name=\"input_create_iam_role\"\u003e\u003c/a\u003e [create\\_iam\\_role](#input\\_create\\_iam\\_role) | Determines whether an IAM role is created | `bool` | `true` | no |\n| \u003ca name=\"input_db_cluster_identifier\"\u003e\u003c/a\u003e [db\\_cluster\\_identifier](#input\\_db\\_cluster\\_identifier) | DB cluster identifier | `string` | `\"\"` | no |\n| \u003ca name=\"input_db_instance_identifier\"\u003e\u003c/a\u003e [db\\_instance\\_identifier](#input\\_db\\_instance\\_identifier) | DB instance identifier | `string` | `\"\"` | no |\n| \u003ca name=\"input_debug_logging\"\u003e\u003c/a\u003e [debug\\_logging](#input\\_debug\\_logging) | Whether the proxy includes detailed information about SQL statements in its logs | `bool` | `false` | no |\n| \u003ca name=\"input_endpoints\"\u003e\u003c/a\u003e [endpoints](#input\\_endpoints) | Map of DB proxy endpoints to create and their attributes (see `aws_db_proxy_endpoint`) | `any` | `{}` | no |\n| \u003ca name=\"input_engine_family\"\u003e\u003c/a\u003e [engine\\_family](#input\\_engine\\_family) | The kind of database engine that the proxy will connect to. Valid values are `MYSQL` or `POSTGRESQL` | `string` | `\"\"` | no |\n| \u003ca name=\"input_iam_policy_name\"\u003e\u003c/a\u003e [iam\\_policy\\_name](#input\\_iam\\_policy\\_name) | The name of the role policy. If omitted, Terraform will assign a random, unique name | `string` | `\"\"` | no |\n| \u003ca name=\"input_iam_role_description\"\u003e\u003c/a\u003e [iam\\_role\\_description](#input\\_iam\\_role\\_description) | The description of the role | `string` | `\"\"` | no |\n| \u003ca name=\"input_iam_role_force_detach_policies\"\u003e\u003c/a\u003e [iam\\_role\\_force\\_detach\\_policies](#input\\_iam\\_role\\_force\\_detach\\_policies) | Specifies to force detaching any policies the role has before destroying it | `bool` | `true` | no |\n| \u003ca name=\"input_iam_role_max_session_duration\"\u003e\u003c/a\u003e [iam\\_role\\_max\\_session\\_duration](#input\\_iam\\_role\\_max\\_session\\_duration) | The maximum session duration (in seconds) that you want to set for the specified role | `number` | `43200` | no |\n| \u003ca name=\"input_iam_role_name\"\u003e\u003c/a\u003e [iam\\_role\\_name](#input\\_iam\\_role\\_name) | The name of the role. If omitted, Terraform will assign a random, unique name | `string` | `\"\"` | no |\n| \u003ca name=\"input_iam_role_path\"\u003e\u003c/a\u003e [iam\\_role\\_path](#input\\_iam\\_role\\_path) | The path to the role | `string` | `null` | no |\n| \u003ca name=\"input_iam_role_permissions_boundary\"\u003e\u003c/a\u003e [iam\\_role\\_permissions\\_boundary](#input\\_iam\\_role\\_permissions\\_boundary) | The ARN of the policy that is used to set the permissions boundary for the role | `string` | `null` | no |\n| \u003ca name=\"input_iam_role_tags\"\u003e\u003c/a\u003e [iam\\_role\\_tags](#input\\_iam\\_role\\_tags) | A map of tags to apply to the IAM role | `map(string)` | `{}` | no |\n| \u003ca name=\"input_idle_client_timeout\"\u003e\u003c/a\u003e [idle\\_client\\_timeout](#input\\_idle\\_client\\_timeout) | The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it | `number` | `1800` | no |\n| \u003ca name=\"input_init_query\"\u003e\u003c/a\u003e [init\\_query](#input\\_init\\_query) | One or more SQL statements for the proxy to run when opening each new database connection | `string` | `\"\"` | no |\n| \u003ca name=\"input_kms_key_arns\"\u003e\u003c/a\u003e [kms\\_key\\_arns](#input\\_kms\\_key\\_arns) | List of KMS Key ARNs to allow access to decrypt SecretsManager secrets | `list(string)` | `[]` | no |\n| \u003ca name=\"input_log_group_kms_key_id\"\u003e\u003c/a\u003e [log\\_group\\_kms\\_key\\_id](#input\\_log\\_group\\_kms\\_key\\_id) | The ARN of the KMS Key to use when encrypting log data | `string` | `null` | no |\n| \u003ca name=\"input_log_group_retention_in_days\"\u003e\u003c/a\u003e [log\\_group\\_retention\\_in\\_days](#input\\_log\\_group\\_retention\\_in\\_days) | Specifies the number of days you want to retain log events in the log group | `number` | `30` | no |\n| \u003ca name=\"input_log_group_tags\"\u003e\u003c/a\u003e [log\\_group\\_tags](#input\\_log\\_group\\_tags) | A map of tags to apply to the CloudWatch log group | `map(string)` | `{}` | no |\n| \u003ca name=\"input_manage_log_group\"\u003e\u003c/a\u003e [manage\\_log\\_group](#input\\_manage\\_log\\_group) | Determines whether Terraform will create/manage the CloudWatch log group or not. Note - this will fail if set to true after the log group has been created as the resource will already exist | `bool` | `true` | no |\n| \u003ca name=\"input_max_connections_percent\"\u003e\u003c/a\u003e [max\\_connections\\_percent](#input\\_max\\_connections\\_percent) | The maximum size of the connection pool for each target in a target group | `number` | `90` | no |\n| \u003ca name=\"input_max_idle_connections_percent\"\u003e\u003c/a\u003e [max\\_idle\\_connections\\_percent](#input\\_max\\_idle\\_connections\\_percent) | Controls how actively the proxy closes idle database connections in the connection pool | `number` | `50` | no |\n| \u003ca name=\"input_name\"\u003e\u003c/a\u003e [name](#input\\_name) | The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens | `string` | `\"\"` | no |\n| \u003ca name=\"input_proxy_tags\"\u003e\u003c/a\u003e [proxy\\_tags](#input\\_proxy\\_tags) | A map of tags to apply to the RDS Proxy | `map(string)` | `{}` | no |\n| \u003ca name=\"input_require_tls\"\u003e\u003c/a\u003e [require\\_tls](#input\\_require\\_tls) | A Boolean parameter that specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy | `bool` | `true` | no |\n| \u003ca name=\"input_role_arn\"\u003e\u003c/a\u003e [role\\_arn](#input\\_role\\_arn) | The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager | `string` | `\"\"` | no |\n| \u003ca name=\"input_session_pinning_filters\"\u003e\u003c/a\u003e [session\\_pinning\\_filters](#input\\_session\\_pinning\\_filters) | Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection | `list(string)` | `[]` | no |\n| \u003ca name=\"input_tags\"\u003e\u003c/a\u003e [tags](#input\\_tags) | A map of tags to add to all resources | `map(string)` | `{}` | no |\n| \u003ca name=\"input_target_db_cluster\"\u003e\u003c/a\u003e [target\\_db\\_cluster](#input\\_target\\_db\\_cluster) | Determines whether DB cluster is targeted by proxy | `bool` | `false` | no |\n| \u003ca name=\"input_target_db_instance\"\u003e\u003c/a\u003e [target\\_db\\_instance](#input\\_target\\_db\\_instance) | Determines whether DB instance is targeted by proxy | `bool` | `false` | no |\n| \u003ca name=\"input_use_policy_name_prefix\"\u003e\u003c/a\u003e [use\\_policy\\_name\\_prefix](#input\\_use\\_policy\\_name\\_prefix) | Whether to use unique name beginning with the specified `iam_policy_name` | `bool` | `false` | no |\n| \u003ca name=\"input_use_role_name_prefix\"\u003e\u003c/a\u003e [use\\_role\\_name\\_prefix](#input\\_use\\_role\\_name\\_prefix) | Whether to use unique name beginning with the specified `iam_role_name` | `bool` | `false` | no |\n| \u003ca name=\"input_vpc_security_group_ids\"\u003e\u003c/a\u003e [vpc\\_security\\_group\\_ids](#input\\_vpc\\_security\\_group\\_ids) | One or more VPC security group IDs to associate with the new proxy | `list(string)` | `[]` | no |\n| \u003ca name=\"input_vpc_subnet_ids\"\u003e\u003c/a\u003e [vpc\\_subnet\\_ids](#input\\_vpc\\_subnet\\_ids) | One or more VPC subnet IDs to associate with the new proxy | `list(string)` | `[]` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_db_proxy_endpoints\"\u003e\u003c/a\u003e [db\\_proxy\\_endpoints](#output\\_db\\_proxy\\_endpoints) | Array containing the full resource object and attributes for all DB proxy endpoints created |\n| \u003ca name=\"output_iam_role_arn\"\u003e\u003c/a\u003e [iam\\_role\\_arn](#output\\_iam\\_role\\_arn) | The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager. |\n| \u003ca name=\"output_iam_role_name\"\u003e\u003c/a\u003e [iam\\_role\\_name](#output\\_iam\\_role\\_name) | IAM role name |\n| \u003ca name=\"output_iam_role_unique_id\"\u003e\u003c/a\u003e [iam\\_role\\_unique\\_id](#output\\_iam\\_role\\_unique\\_id) | Stable and unique string identifying the IAM role |\n| \u003ca name=\"output_log_group_arn\"\u003e\u003c/a\u003e [log\\_group\\_arn](#output\\_log\\_group\\_arn) | The Amazon Resource Name (ARN) of the CloudWatch log group |\n| \u003ca name=\"output_log_group_name\"\u003e\u003c/a\u003e [log\\_group\\_name](#output\\_log\\_group\\_name) | The name of the CloudWatch log group |\n| \u003ca name=\"output_proxy_arn\"\u003e\u003c/a\u003e [proxy\\_arn](#output\\_proxy\\_arn) | The Amazon Resource Name (ARN) for the proxy |\n| \u003ca name=\"output_proxy_default_target_group_arn\"\u003e\u003c/a\u003e [proxy\\_default\\_target\\_group\\_arn](#output\\_proxy\\_default\\_target\\_group\\_arn) | The Amazon Resource Name (ARN) for the default target group |\n| \u003ca name=\"output_proxy_default_target_group_id\"\u003e\u003c/a\u003e [proxy\\_default\\_target\\_group\\_id](#output\\_proxy\\_default\\_target\\_group\\_id) | The ID for the default target group |\n| \u003ca name=\"output_proxy_default_target_group_name\"\u003e\u003c/a\u003e [proxy\\_default\\_target\\_group\\_name](#output\\_proxy\\_default\\_target\\_group\\_name) | The name of the default target group |\n| \u003ca name=\"output_proxy_endpoint\"\u003e\u003c/a\u003e [proxy\\_endpoint](#output\\_proxy\\_endpoint) | The endpoint that you can use to connect to the proxy |\n| \u003ca name=\"output_proxy_id\"\u003e\u003c/a\u003e [proxy\\_id](#output\\_proxy\\_id) | The ID for the proxy |\n| \u003ca name=\"output_proxy_target_endpoint\"\u003e\u003c/a\u003e [proxy\\_target\\_endpoint](#output\\_proxy\\_target\\_endpoint) | Hostname for the target RDS DB Instance. Only returned for `RDS_INSTANCE` type |\n| \u003ca name=\"output_proxy_target_id\"\u003e\u003c/a\u003e [proxy\\_target\\_id](#output\\_proxy\\_target\\_id) | Identifier of `db_proxy_name`, `target_group_name`, target type (e.g. `RDS_INSTANCE` or `TRACKED_CLUSTER`), and resource identifier separated by forward slashes (/) |\n| \u003ca name=\"output_proxy_target_port\"\u003e\u003c/a\u003e [proxy\\_target\\_port](#output\\_proxy\\_target\\_port) | Port for the target RDS DB Instance or Aurora DB Cluster |\n| \u003ca name=\"output_proxy_target_rds_resource_id\"\u003e\u003c/a\u003e [proxy\\_target\\_rds\\_resource\\_id](#output\\_proxy\\_target\\_rds\\_resource\\_id) | Identifier representing the DB Instance or DB Cluster target |\n| \u003ca name=\"output_proxy_target_target_arn\"\u003e\u003c/a\u003e [proxy\\_target\\_target\\_arn](#output\\_proxy\\_target\\_target\\_arn) | Amazon Resource Name (ARN) for the DB instance or DB cluster. Currently not returned by the RDS API |\n| \u003ca name=\"output_proxy_target_tracked_cluster_id\"\u003e\u003c/a\u003e [proxy\\_target\\_tracked\\_cluster\\_id](#output\\_proxy\\_target\\_tracked\\_cluster\\_id) | DB Cluster identifier for the DB Instance target. Not returned unless manually importing an RDS\\_INSTANCE target that is part of a DB Cluster |\n| \u003ca name=\"output_proxy_target_type\"\u003e\u003c/a\u003e [proxy\\_target\\_type](#output\\_proxy\\_target\\_type) | Type of target. e.g. `RDS_INSTANCE` or `TRACKED_CLUSTER` |\n\u003c!-- END_TF_DOCS --\u003e\n\n## License\n\nApache-2.0 Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-rds-proxy/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-rds-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-rds-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-rds-proxy/lists"}