Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow optional strict checking of variable names in EQL expressions #2678

Merged
merged 15 commits into from
May 15, 2023
Merged
Prev Previous commit
Next Next commit
fix invalid variable in spec files
  • Loading branch information
faec committed May 12, 2023
commit 9e60d47f623aef006159a40848e57d67d08f0c83
2 changes: 1 addition & 1 deletion specs/cloud-defend.spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
- elasticsearch
runtime:
preventions:
- condition: ${runtime.user.root} == false
- condition: ${user.root} == false
message: "Elastic Agent must be running as root"
command: &args
args:
Expand Down
4 changes: 2 additions & 2 deletions specs/endpoint-security.spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
preventions:
- condition: ${runtime.arch} == 'arm64' and ${runtime.family} == 'redhat' and ${runtime.major} == '7'
message: "No support for RHEL7 on arm64"
- condition: ${runtime.user.root} == false
- condition: ${user.root} == false
message: "Elastic Agent must be running as root"
service:
cport: 6788
Expand Down Expand Up @@ -64,7 +64,7 @@ inputs:
- logstash
runtime:
preventions:
- condition: ${runtime.user.root} == false
- condition: ${user.root} == false
message: "Elastic Agent must be running as Administrator or SYSTEM"
service:
cport: 6788
Expand Down
2 changes: 1 addition & 1 deletion specs/pf-host-agent.spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
- elasticsearch
runtime:
preventions:
- condition: ${runtime.user.root} == false
- condition: ${user.root} == false
message: "Elastic Agent must be running as root"
command:
args:
Expand Down