Skip to content

Commit

Permalink
Deploy cloud run service
Browse files Browse the repository at this point in the history
  • Loading branch information
cybermaggedon committed Oct 5, 2024
1 parent 40feb39 commit 091182e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pulumi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ const vertexAiUserMember = new gcp.projects.IAMMember(
}
);
*/

const service = new gcp.cloudrun.Service(
"service",
{
Expand Down Expand Up @@ -153,7 +155,7 @@ const service = new gcp.cloudrun.Service(
resources: {
limits: {
cpu: "1000m",
memory: "1024Mi",
memory: "128Mi",
}
},
}
Expand All @@ -167,6 +169,7 @@ const service = new gcp.cloudrun.Service(
}
);

/*
const allUsersPolicy = gcp.organizations.getIAMPolicy(
{
bindings: [{
Expand Down

0 comments on commit 091182e

Please sign in to comment.