Skip to content

Commit

Permalink
Update getter names
Browse files Browse the repository at this point in the history
  • Loading branch information
vickenty committed Dec 19, 2024
1 parent 24bf170 commit 3ac0e0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scenarios/aws/ec2/vm_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ func VMRunWithDocker(ctx *pulumi.Context) error {
agentOptions = append(agentOptions, dockeragentparams.WithImageTag(env.AgentVersion()))
}

if env.GetJMX() {
if env.AgentJMX() {
agentOptions = append(agentOptions, dockeragentparams.WithJMX())
}

if env.GetFIPS() {
if env.AgentFIPS() {
agentOptions = append(agentOptions, dockeragentparams.WithFIPS())
}

Expand Down

0 comments on commit 3ac0e0e

Please sign in to comment.