https://github.com/gsscoder/configinsights
Azure services configuration analyzer
https://github.com/gsscoder/configinsights
analyitcs azure configuration misconfiguration
Last synced: about 1 month ago
JSON representation
Azure services configuration analyzer
- Host: GitHub
- URL: https://github.com/gsscoder/configinsights
- Owner: gsscoder
- Created: 2021-12-19T13:25:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-02T16:36:30.000Z (over 2 years ago)
- Last Synced: 2025-05-19T23:08:47.941Z (about 1 year ago)
- Topics: analyitcs, azure, configuration, misconfiguration
- Language: C#
- Homepage:
- Size: 184 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Configuration Insights
Tool and API to analyze configuration settings and try detect misconfiguration issues. This is an early development, incomplete and targeted only to Azure App Services.
## Install
**NOTE**: .NET 5.0 is required.
```powershell
# clone the repository
$ git clone https://github.com/gsscoder/configinsights
# change the working directory
$ cd configinsights
# build the executable
$ dotnet build -c release
# copy it to a directory of your convenience
$ cp -r .\artifacts\ConfigurationInsights.CLI\Release\net5.0 \XCOPY\configinsights
# put the directory in your path
$ $env:Path += ";\XCOPY\configinsights"
# test that the command can run
$ configchk --version
```
## Usage
```
$ az login
$ az webapp config appsettings list -g YOUR_RES_GROUP -n YOUR_APP_SERVICE | configchk
```
