[Terraform] RDS Snapshot
과제의 목표스냅샷 복원을 이용하여 RDS를 구축 하는 것이다.resource "aws_db_instance" "rds" { // DB 인스턴스 설정 engine = "oracle-se2" license_model = "license-included" identifier = "tokyo-stg-rds-gh" //복원 할 스냅샷 지정 snapshot_identifier = "tokyo-stg-rds-gh-1234" //인스턴스 구성 instance_class = "db.r5.large" //스토리지 storage_type = "gp2" allocated_storage = 171..