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
- Host: GitHub
- URL: https://github.com/nullstone-modules/aws-rds-sqlserver
- Owner: nullstone-modules
- Created: 2022-07-26T18:46:22.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T21:35:11.000Z (about 2 years ago)
- Last Synced: 2026-01-30T14:56:59.882Z (4 months ago)
- Language: HCL
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: security-groups.tf
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