fix(plugin) missing $ previous commit

This commit is contained in:
Sims24 2020-05-02 13:38:39 +02:00
parent deb65967e2
commit a3e29114af
3 changed files with 3 additions and 3 deletions

View File

@ -139,7 +139,7 @@ sub check_options {
$self->{aws_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 600;
$self->{aws_period} = defined($self->{option_results}->{period}) ? $self->{option_results}->{period} : 60;
if (defined($self->{option_results}->{target_group}) && self->{option_results}->{target_group} ne '') {
if (defined($self->{option_results}->{target_group}) && $self->{option_results}->{target_group} ne '') {
push @{$self->{aws_dimensions}}, { Name => 'TargetGroup', Value => $self->{option_results}->{target_group} };
}

View File

@ -153,7 +153,7 @@ sub check_options {
$self->{aws_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 600;
$self->{aws_period} = defined($self->{option_results}->{period}) ? $self->{option_results}->{period} : 60;
if (defined($self->{option_results}->{target_group}) && self->{option_results}->{target_group} ne '') {
if (defined($self->{option_results}->{target_group}) && $self->{option_results}->{target_group} ne '') {
push @{$self->{aws_dimensions}}, { Name => 'TargetGroup', Value => $self->{option_results}->{target_group} };
}

View File

@ -129,7 +129,7 @@ sub check_options {
$self->{aws_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 600;
$self->{aws_period} = defined($self->{option_results}->{period}) ? $self->{option_results}->{period} : 60;
if (defined($self->{option_results}->{target_group}) && self->{option_results}->{target_group} ne '') {
if (defined($self->{option_results}->{target_group}) && $self->{option_results}->{target_group} ne '') {
push @{$self->{aws_dimensions}}, { Name => 'TargetGroup', Value => $self->{option_results}->{target_group} };
}