{ "name": "rds", "version": "1.0.0", "kind": "l1", "type": "aws:rds:instance", "description": "RDS DB instance primitive (engine-agnostic stack type aws:rds:instance; the Terraform adapter translates to aws_db_instance).", "inputs": { "instance_name": { "type": "string", "description": "Name (identifier) of the RDS DB instance.", "required": true }, "instance_class": { "type": "string", "default": "db.t3.micro", "description": "DB instance class." }, "allocated_storage": { "type": "integer", "default": 20, "description": "Allocated storage in GiB." }, "enabled": { "type": "boolean", "default": true, "description": "Feature flag: enable/disable this module. Set to false to skip resource creation." }, "tags": { "type": "map", "default": {}, "description": "Additional tags to merge with the module defaults." } }, "outputs": { "instance_endpoint": { "type": "string", "description": "The RDS DB instance endpoint (host:port)." }, "instance_arn": { "type": "arn", "description": "The RDS DB instance ARN." } } }