Files
Sven (AAMOS AI) 99c73cada0 cibello(terraform): replace SES with Mailu DNS records
- Remove aws_ses_configuration_set, aws_ses_domain_identity, aws_ses_domain_dkim

- Remove SES verification and DKIM Route53 records

- Remove SES outputs

- Add MX, SPF, DKIM, DMARC records for cibello.app -> mail.aamos.systems

- DKIM key split into two 255-char strings per Route53 limit

No apply; plan saved as cibello.plan
2026-08-11 22:51:20 +07:00

31 lines
741 B
Terraform

output "app_public_ip" {
description = "Elastic IP for the application server"
value = aws_eip.app.public_ip
}
output "rds_endpoint" {
description = "RDS PostgreSQL endpoint"
value = aws_db_instance.main.endpoint
}
output "production_bucket" {
description = "Production S3 bucket"
value = aws_s3_bucket.production.bucket
}
output "web_bucket" {
description = "Web/static S3 bucket"
value = aws_s3_bucket.web.bucket
}
output "cloudfront_domain" {
description = "CloudFront distribution domain name"
value = aws_cloudfront_distribution.main.domain_name
}
output "name_servers" {
description = "Route53 name servers for cibello.app"
value = aws_route53_zone.main.name_servers
}