Skip to content

Add cloudbeat Azure Credentials config #8376

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

Merged
merged 4 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add cloudbeat Azure Credentials config
  • Loading branch information
moukoublen committed Nov 15, 2023
commit e610e9a400ab82a0192f8d02a1ea938875264e5c
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,26 @@ config:
type: cspm
deployment: azure
benchmark: cis_azure
azure:
credentials:
{{#if azure.credentials.client_id}}
client_id: {{azure.credentials.client_id}}
{{/if}}
{{#if azure.credentials.tenant_id}}
tenant_id: {{azure.credentials.tenant_id}}
{{/if}}
{{#if azure.credentials.client_secret}}
client_secret: {{azure.credentials.client_secret}}
{{/if}}
{{#if azure.credentials.client_username}}
client_username: {{azure.credentials.client_username}}
{{/if}}
{{#if azure.credentials.client_password}}
client_password: {{azure.credentials.client_password}}
{{/if}}
{{#if azure.credentials.client_certificate_path}}
client_certificate_path: {{azure.credentials.client_certificate_path}}
{{/if}}
{{#if azure.credentials.client_certificate_password}}
client_certificate_password: {{azure.credentials.client_certificate_password}}
{{/if}}
Original file line number Diff line number Diff line change
Expand Up @@ -164,3 +164,52 @@ streams:
description: CIS Benchmark for Microsoft Azure Foundations
template_path: azure.yml.hbs
enabled: false
vars:
- name: azure.credentials.type
type: text
title: Credentials type
multi: false
required: false
show_user: false
- name: azure.credentials.client_id
type: text
title: Client ID
multi: false
required: false
show_user: true
- name: azure.credentials.tenant_id
type: text
title: Tenant ID
multi: false
required: false
show_user: true
- name: azure.credentials.client_secret
type: text
title: Client Secret
multi: false
required: false
show_user: true
- name: azure.credentials.client_username
type: text
title: Client Username
multi: false
required: false
show_user: true
- name: azure.credentials.client_password
type: text
title: Client Password
multi: false
required: false
show_user: true
- name: azure.credentials.client_certificate_path
type: text
title: Client Certificate Path
multi: false
required: false
show_user: true
- name: azure.credentials.client_certificate_password
type: text
title: Client Certificate Password
multi: false
required: false
show_user: true