added project key and org key to sonar.yml

This commit is contained in:
Favee 2025-04-13 15:27:31 +01:00
parent 65c40b337a
commit 12366e81f0
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ resource "aws_security_group" "ecs_tasks" {
# RDS Database for PetClinic # RDS Database for PetClinic
resource "aws_db_instance" "petclinic" { resource "aws_db_instance" "petclinic" {
identifier = "petclinic-${var.environment}" identifier = "petclinic-${var.environment}-db"
allocated_storage = 20 allocated_storage = 20
storage_type = "gp2" storage_type = "gp2"
engine = "mysql" engine = "mysql"

View file

@ -1,6 +1,6 @@
variable "aws_region" { variable "aws_region" {
description = "AWS region to deploy resources" description = "AWS region to deploy resources"
default = "us-west-2" default = "us-east-1"
} }
variable "environment" { variable "environment" {