mirror of
https://github.com/sidpalas/devops-directive-terraform-course.git
synced 2025-12-10 21:01:14 +00:00
Updates from bitrot livestream (#16)
- Remove minor version pin for postgres versions (i.e. 12.5 -> 12) - Update s3 config to use separate versioning and encryption terraform resources - Use bucket_prefix instead of bucket for bucket naming to avoid name conflicts Stream: https://youtu.be/KWwKPYuOGBw
This commit is contained in:
@@ -2,7 +2,7 @@ resource "aws_db_instance" "db_instance" {
|
||||
allocated_storage = 20
|
||||
storage_type = "standard"
|
||||
engine = "postgres"
|
||||
engine_version = "12.5"
|
||||
engine_version = "12"
|
||||
instance_class = "db.t2.micro"
|
||||
name = var.db_name
|
||||
username = var.db_user
|
||||
|
||||
Reference in New Issue
Block a user