Skip to content

Instantly share code, notes, and snippets.

@OksanaH

OksanaH/rds.tf Secret

Last active March 24, 2021 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OksanaH/9cb8a7305b60dc5465ad463d60b17d79 to your computer and use it in GitHub Desktop.
Save OksanaH/9cb8a7305b60dc5465ad463d60b17d79 to your computer and use it in GitHub Desktop.
TerraformRDS
resource "aws_db_instance" "db" {
allocated_storage = 20
storage_type = "standard"
engine = "sqlserver-ex"
instance_class = "db.t2.small"
username ="username"
password = "password"
identifier = "identifier"
skip_final_snapshot = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment