Skip to content

Commit

Permalink
Merge pull request #6 from HeyGarrison/update-oct-7
Browse files Browse the repository at this point in the history
updating settings
  • Loading branch information
HeyGarrison authored Oct 8, 2024
2 parents 8114843 + 8b9685e commit 549b0ed
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ dist
dist-ssr
*.local

localstack_env

# Editor directories and files
.vscode/*
!.vscode/extensions.json
Expand Down
2 changes: 1 addition & 1 deletion .iac/scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RESOURCE_ID=$(awslocal apigateway create-resource --rest-api-id $API_ID --parent
awslocal apigateway put-method --rest-api-id $API_ID --resource-id $RESOURCE_ID --http-method ANY --authorization-type NONE

# # # Set up Lambda integration
REGION="us-east-1"
REGION="us-west-2"
ACCOUNT_ID="000000000000"
awslocal apigateway put-integration \
--rest-api-id $API_ID \
Expand Down
2 changes: 1 addition & 1 deletion .iac/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "region" {
type = string
default = "us-east-1"
default = "us-west-2"
}

# Provider configuration
Expand Down
2 changes: 1 addition & 1 deletion apps/lambda/health.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const handler = async (event) => {
const response = {
statusCode: 200,
body: "ok",
body: "ok pura",
};
return response;
};

0 comments on commit 549b0ed

Please sign in to comment.