Skip to content

Commit

Permalink
docs error, build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhemmarchand committed Apr 9, 2024
1 parent 5da70a3 commit bc77581
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/github-actions-build.yml
Expand Up @@ -52,6 +52,19 @@ jobs:
name: appinspect-report-json
path: output/report_appinspect.json

- name: Archive tgz application
if: always()
uses: actions/upload-artifact@v3
with:
path: output/*.tgz

- name: Archive sha256sum
if: always()
uses: actions/upload-artifact@v3
with:
name: release-sha256.txt
path: output/release-sha256.txt

- name: Show output directory content
run: |
ls -ltr output/
Expand Down
4 changes: 0 additions & 4 deletions README.md
@@ -1,9 +1,5 @@
# Cold to Frozen framework for Splunk to archive buckets in Azure blob storage

| branch | build status |
| --- | --- |
| master | [![master status](https://circleci.com/gh/guilhemmarchand/TA-azure-blob-archiving/tree/master.svg?style=svg)](https://circleci.com/gh/guilhemmarchand/TA-azure-blob-archiving/tree/master)

## Introduction

**This Add-on provides a robust and smart archiving framefork solution for Splunk Enterprise and Azure blob storage.**
Expand Down
2 changes: 1 addition & 1 deletion build/build.py
Expand Up @@ -127,7 +127,7 @@ def get_app_id():
version_data = json.load(f)
logging.info("version_data=\"{}\"".format(version_data))
appID = version_data['appID']
logging.info('**** app generation, appID=\"{}\" ****'.format(appID))
logging.info('**** TrackMe app generation, appID=\"{}\" ****'.format(appID))

except Exception as e:
logging.error("Failed to retrieve the appID, exception=\"{}\"".format(e))
Expand Down
10 changes: 5 additions & 5 deletions docs/configuration.rst
Expand Up @@ -19,7 +19,7 @@ Azure storage account connection string

**Once you have a storage account, the next things you need to retrieve are the following information to configure the Add-on:**

**You need to know the connection string for your user account, this information will be stored on the indexers in the configuration file local/azure2blob.conf:**
**You need to know the connection string for your user account, this information will be stored on the indexers in the configuration file local/azure2blob_settings.conf:**

::

Expand All @@ -31,7 +31,7 @@ Azure storage account connection string
:alt: az_storage_connection_string.png
:align: center

You can use any of the two connection strings provided by Azure, store this value as you will configure it in the local/azure2blob.conf file.
You can use any of the two connection strings provided by Azure, store this value as you will configure it in the local/azure2blob_settings.conf file.

Azure storage blob container
----------------------------
Expand Down Expand Up @@ -81,14 +81,14 @@ Splunk indexer(s) configuration
cd /opt/splunk/etc/manager-apps
ls -ltrd TA-azure-blob-archiving

**Create a local directory and copy default/azure2blob.conf:**
**Create a local directory and copy default/azure2blob_settings.conf:**

::

mkdir TA-azure-blob-archiving/local
cp -p TA-azure-blob-archiving/default/azure2blob.conf TA-azure-blob-archiving/local/
cp -p TA-azure-blob-archiving/default/azure2blob_settings.conf TA-azure-blob-archiving/local/

**Edit the file TA-azure-blob-archiving/local/azure2blob.conf and update the values according to your account and settings:**
**Edit the file TA-azure-blob-archiving/local/azure2blob_settings.conf and update the values according to your account and settings:**

::

Expand Down

0 comments on commit bc77581

Please sign in to comment.