Skip to content

Commit

Permalink
Removing AWS variables from the code
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeCarillo committed Mar 18, 2024
1 parent bc3094e commit d6a8d05
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions iac/lib/iac_stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ export class IacStack extends cdk.Stack {
"STAGE": process.env.STAGE || "test",
"AZURE_URL": process.env.AZURE_URL || "",
"SECRET_KEY": process.env.SECRET_KEY || "",
"AWS_REGION": process.env.AWS_REGION || "",
"DATABASE_URL": process.env.DATABASE_URL || "",
"AWS_ACCOUNT_ID": process.env.AWS_ACCOUNT_ID || "",
"AWS_ACCESS_KEY_ID": process.env.AWS_ACCESS_KEY_ID || "",
"AWS_SECRET_ACCESS_KEY": process.env.AWS_SECRET_ACCESS_KEY || "",
"DATABASE_URL": process.env.DATABASE_URL || ""
};

const restapi = new RestApi(
Expand Down

0 comments on commit d6a8d05

Please sign in to comment.