Skip to content

Commit

Permalink
task: Fix issue with Logs region
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmf94 committed Jun 11, 2024
1 parent 70960a9 commit 553e24d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
import json
import pulumi_aws as aws
import pulumi_docker as docker
from dotenv import load_dotenv

# Load environment variables from the .env file
load_dotenv()

config = pulumi.Config()

Expand Down Expand Up @@ -393,7 +397,7 @@
"logDriver": "awslogs",
"options": {
"awslogs-group": args[2],
"awslogs-region": "us-east-1",
"awslogs-region": "us-west-1",
"awslogs-stream-prefix": "pulumi-langserve",
},
},
Expand Down

0 comments on commit 553e24d

Please sign in to comment.