Overview
This is a repackaged open source software product wherein additional charges apply for a pre-hardened, AWS-optimized image with verifiable compliance evidence and maintenance. PostgreSQL 16 runs on a Amazon Linux 2023 base hardened following DISA STIG guidelines, tuned for Amazon EC2 workloads, and shipped with a complete OpenSCAP evidence pack and Software Bill of Materials (SBOM).
Value-Added Features
PostgreSQL 16 Deployment:
-
Best-Practice Deployment: PostgreSQL 16 installed and enabled following official AWS and PostgreSQL guidelines, ready to accept connections on first launch.
-
Extensions Pre-loaded: The matching contrib extension set is installed alongside the server, so widely used modules such as pg_stat_statements, pgcrypto, and postgres_fdw are available immediately.
-
Bloat-Free Data Layer: CPU and memory go to the PostgreSQL engine rather than unused system services.
Hardened Operating System Base:
-
DISA STIG Alignment: 147 security controls applied to the Amazon Linux 2023 base via the SCAP Security Guide, including auditd logging, SSH hardening, kernel command line and module blocklist restrictions, and strict password policy enforcement.
-
Fully Patched at Release: Zero packages with a pending update at build time, verified. The complete CVE scan ships inside the image.
-
Documented Exceptions: Every STIG rule not applied is itemized with a technical justification, so the delivered posture is auditable.
Comprehensive Evidence Pack:
Every AMI carries an OpenSCAP evidence pack generated against DISA STIG guidance, under /opt/hardening-report/:
- Base_Report.html: Pre-hardening scan report, the initial baseline.
- Tailored_Profile_Report.html: Post-hardening report against the tailored profile shipped in this image.
- Raw_STIG_Report.html: Post-hardening report against the unmodified baseline DISA STIG profile.
- Exceptions.txt: Itemized unapplied STIG rules with technical justifications (AWS compatibility, site-specific policies, CSP service conflicts).
- Tuning_Parameters.txt: Every tuning parameter applied on top of the hardening, each shown against its base-image value.
- compliance_mapping.csv: Rule-by-rule mapping to NIST SP 800-53 controls and DISA STIG identifiers with pass/fail statuses.
- package_changes.txt: Package delta against the minimal stock installation.
- sbom.spdx.json: Software Bill of Materials in SPDX format, generated from the RPM database.
- cve_scan.txt / cve_scan_full.txt.gz: Vulnerability scan reports categorizing CVEs by upstream patch availability.
- key_files.sha256: SHA-256 checksums of the key configuration files changed by the hardening, so the delivered state can be verified.
- README.txt: Index of artifact contents, operational guidelines, and configuration defaults.
Reliability Validation:
- Validation Testing: Functional verification on clean AMI launches through multi-round integration testing, covering the complete database lifecycle with SELinux enforcing.
AWS Network & Kernel Tuning:
-
Network Stack: TCP BBR congestion control with fair queueing, increased connection backlogs, buffer adjustments, and MTU probing enabled.
-
System Tuning: Red Hat tuned daemon active with a custom cloud profile, transparent hugepages set to madvise, and modified memory/EBS writeback parameters.
-
EC2 Integration: NVMe I/O timeouts, Amazon Time Sync (chrony), IRQ balance daemon, and size-capped persistent journald logging.
Operational Tools:
- Preinstalled Tools: AWS SSM Session Manager enabled, CloudWatch Agent installed (disabled by default).
Maintenance:
- Maintenance Specifications: Rebuilt and updated bi-weekly to monthly incorporating upstream PostgreSQL and Amazon Linux 2023 security updates, with artifact documentation refreshed per release.
About PostgreSQL 16
One of the world's most advanced open-source relational database systems, known for strict ACID compliance, a rich SQL feature set, and deep extensibility through JSONB, full text search, and foreign data wrappers. Release 16 introduced parallel execution of FULL and RIGHT outer joins, logical replication from standby servers, SQL/JSON constructor syntax, and the pg_stat_io view. It has run production workloads since September 2023, giving extensions, drivers, and ORMs years to converge on it, with upstream community maintenance through November 2028.
About Amazon Linux 2023
Maintained by AWS with a deterministic release cadence and quarterly updates, Amazon Linux 2023 integrates natively with AWS services and the EC2 Nitro platform. It ships SELinux enabled by default, its package set is curated for cloud workloads, and each major version carries a five-year lifecycle, giving teams a stable landing zone aligned with the AWS ecosystem.
Highlights
- PostgreSQL 16 on a DISA STIG Hardened Base: 147 security controls applied to the Amazon Linux 2023 foundation via the SCAP Security Guide, incorporating SSH hardening, kernel command line and module blocklists, and strict password policies out of the box.
- Verifiable Evidence Pack and SBOM: A 12-file OpenSCAP evidence pack ships inside the image, with before/after scan reports, itemized exceptions and justifications, NIST SP 800-53 mapping, CVE scan, and a complete SPDX Software Bill of Materials.
- PostgreSQL 16: Best-practice deployment. The matching contrib extension set installed alongside the server - on an EC2-tuned base with TCP BBR and Red Hat tuned cloud profiles, rebuilt bi-weekly to monthly with upstream security patches.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
- ...
Dimension | Cost/hour |
|---|---|
t3.medium Recommended | $0.04 |
t2.micro | $0.03 |
t3.micro | $0.03 |
t2.nano | $0.03 |
t3.nano | $0.03 |
t3a.nano | $0.03 |
t1.micro | $0.03 |
t3a.micro | $0.03 |
m1.small | $0.04 |
t2.small | $0.04 |
Vendor refund policy
No refunds. Cancel anytime.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Latest Updates
Additional details
Usage instructions
Connection Methods
Once launched, SSH into the instance. The default username is 'ec2-user'. You can switch to the root user environment by running: sudo su -
This product requires SSH for initial setup and all database administration (peer authentication only). There is no web console and no default password.
Install Information
-
OS: Amazon Linux 2023
-
PostgreSQL: 16.14
-
Service Name: postgresql
-
Config File: '/var/lib/pgsql/data/postgresql.conf'
-
Authentication Config: '/var/lib/pgsql/data/pg_hba.conf'
-
Data Directory: '/var/lib/pgsql/data'
Usage Instructions
-
Local Admin Access: Connect locally by running: 'sudo -u postgres psql'
-
Manage Service: Use 'sudo systemctl start/stop/restart postgresql' to control the database daemon.
-
Enable Remote Access:
By default, PostgreSQL only allows local connections. To enable remote access, complete these exact steps:
-
Step 1: Open '/var/lib/pgsql/data/postgresql.conf', find the 'listen_addresses' parameter, uncomment it, and set it to: listen_addresses = '*'
-
Step 2: Open '/var/lib/pgsql/data/pg_hba.conf', scroll to the very bottom, and append this exact line: host all all 0.0.0.0/0 scram-sha-256
-
Step 3: Apply the configuration changes by running: sudo systemctl restart postgresql
-
Step 4: AWS Firewall: Go to your AWS Console and ensure the EC2 Security Group has an Inbound Rule allowing TCP Port 5432.
Firewall Configuration
-
SSH (Port 22): Required for initial system access.
-
PostgreSQL (Port 5432): Required for remote database clients (e.g., pgAdmin, DBeaver) or application servers to connect.
-
Security Recommendation: For production environments, strictly limit access to ports 22 and 5432 to trusted IP addresses only via AWS Security Groups.
Support
Vendor support
Should you encounter any issues while using the system, please do not hesitate to contact us via email at: support@easyclouds.io ,Thank you!
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.