From 6a5592654102e9555007479d8e5b14170fc619ea Mon Sep 17 00:00:00 2001 From: Mike Cohen Date: Wed, 2 Sep 2020 14:11:40 +1000 Subject: [PATCH] Update version for release. (#610) --- artifacts/definitions/Elastic/Flows/Upload.yaml | 6 ++++++ constants/constants.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/artifacts/definitions/Elastic/Flows/Upload.yaml b/artifacts/definitions/Elastic/Flows/Upload.yaml index 6badd96efea..c8e2a11e7af 100644 --- a/artifacts/definitions/Elastic/Flows/Upload.yaml +++ b/artifacts/definitions/Elastic/Flows/Upload.yaml @@ -16,6 +16,9 @@ parameters: description: Only upload these artifacts to elastic - name: elasticAddresses default: http://127.0.0.1:9200/ + - name: Username + - name: Password + - name: APIKey sources: - queries: @@ -44,4 +47,7 @@ sources: query=documents, addresses=split(string=elasticAddresses, sep=","), index="velociraptor", + password=Password, + username=Username, + api_key=APIKey, type="artifact") diff --git a/constants/constants.go b/constants/constants.go index e55be80a33b..c9432efa123 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -20,7 +20,7 @@ package constants import "regexp" const ( - VERSION = "0.4.8" + VERSION = "0.4.9" ENROLLMENT_WELL_KNOWN_FLOW = "E:Enrol" MONITORING_WELL_KNOWN_FLOW = FLOW_PREFIX + "Monitoring"