An open API service indexing awesome lists of open source software.

https://github.com/nullstone-modules/aws-rds-sqlserver

Nullstone module to create a SQL Server cluster in AWS
https://github.com/nullstone-modules/aws-rds-sqlserver

Last synced: 4 months ago
JSON representation

Nullstone module to create a SQL Server cluster in AWS

Awesome Lists containing this project

README

          

# aws-rds-sqlserver

Nullstone Block standing up AWS RDS SQL Server

## Inputs

- `sqlserver_edition: string` - SqlServer Edition to create - default: se
- `sqlserver_version: string` - SqlServer Engine Version - default: 15
- `instance_class: string` - SqlServer Instance Class - default: db.t3.micro
- `allocated_storage: number` - Allocated storage in GB - default: 10
- `backup_retention_period: number` - The days to retain backups - default: 5
- `high_availability` - Provide failover support across multiple availabilty zones - default: false
- `enforce_ssl` - Set to true to require an SSL connection - default: false
- `enable_public_access` - Make this instance available outside the private network - default: false

## Outputs

- `db_instance_arn: string` - SqlServer Instance ARN
- `db_master_secret_name: string` - Name of AWS Secrets Manager Secret that holds database master credentials
- `db_endpoint: string` - SqlServer Connection Endpoint
- `db_security_group_id: string` - Security Group ID for RDS Cluster
- `db_user_security_group_id: string` - Security Group ID - Attach to any instance to gain access to the sqlserver cluster