Skip to content

Files

Latest commit

 

History

History
28 lines (19 loc) · 502 Bytes

aws-rds-no-classic-resources.md

File metadata and controls

28 lines (19 loc) · 502 Bytes

Pattern: Use of AWS classic resource

Issue: -

Description

AWS Classic resources run in a shared environment with infrastructure owned by other AWS customers. You should run resources in a VPC instead.

Resolution: Switch to VPC resources.

Examples

Example of incorrect code:

resource "aws_db_security_group" "bad_example" {
  # ...
}

Example of correct code:

resource "aws_security_group" "good_example" {
  # ...
}