Skip to content

Commit

Permalink
fix: hardcode aws tag to test new policy
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoSerranoP committed Aug 22, 2024
1 parent e22d20d commit efb9e3a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/actions/src/helpers/vm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ export const createEC2Instance = async (
const { amiId, instanceProfileArn } = getAWSVariables()

// Parametrize the VM EC2 instance.
console.log("\nLAUNCHING AWS EC2 INSTANCE\n")
const params: RunInstancesCommandInput = {
ImageId: amiId,
InstanceType: instanceType as _InstanceType,
Expand Down Expand Up @@ -199,7 +200,7 @@ export const createEC2Instance = async (
},
{
Key: "ProjectName",
Value: process.env.AWS_TAG_VALUE
Value: "trusted-setup"
}
]
},
Expand All @@ -208,7 +209,7 @@ export const createEC2Instance = async (
Tags: [
{
Key: "ProjectName",
Value: process.env.AWS_TAG_VALUE
Value: "trusted-setup"
}
]
}
Expand Down

0 comments on commit efb9e3a

Please sign in to comment.