Giter Club home page Giter Club logo

Comments (3)

Subhajit97 avatar Subhajit97 commented on September 20, 2024

#64
This will unblock following CIS recommendations

Section 4

4.3.1 Ensure 'Enforce SSL connection' is set to 'ENABLED' for PostgreSQL Database Server (Automated)
4.3.3 Ensure server parameter 'log_checkpoints' is set to 'ON' for PostgreSQL Database Server (Automated)
4.3.4 Ensure server parameter 'log_connections' is set to 'ON' for PostgreSQL Database Server (Automated)
4.3.5 Ensure server parameter 'log_disconnections' is set to 'ON' for PostgreSQL Database Server (Automated)
4.3.6 Ensure server parameter 'connection_throttling' is set to 'ON' for PostgreSQL Database Server (Automated)
4.3.7 Ensure server parameter 'log_retention_days' is greater than 3 days for PostgreSQL Database Server (Automated)
4.3.8 Ensure 'Allow access to Azure services' for PostgreSQL Database Server is disabled (Manual)

from steampipe-plugin-azure.

Subhajit97 avatar Subhajit97 commented on September 20, 2024

#66
This will unblock following CIS recommendations

Section 4

4.3.2 Ensure 'Enforce SSL connection' is set to 'ENABLED' for MySQL Database Server (Automated)

from steampipe-plugin-azure.

Subhajit97 avatar Subhajit97 commented on September 20, 2024

#67
This will unblock following CIS recommendations

Section 4
4.4 Ensure that Azure Active Directory Admin is configured (Automated)
4.5 Ensure SQL server's TDE protector is encrypted with Customer-managed key (Automated)

Ensure that Azure Active Directory Admin is configured (Automated)

select
  name,
  id
from
  azure_sql_server
where
  server_azure_ad_administrator is not null;

Ensure SQL server's TDE protector is encrypted with Customer-managed key (Automated)

select
  name,
  encryp ->> 'kind' as encryption_kind,
  encryp -> 'properties' ->> 'serverKeyType' as encryption_key_type,
  encryp -> 'properties' ->> 'uri' as key_uri
from
  azure_sql_server,
  jsonb_array_elements(encryption_protector) as encryp
where
  encryp ->> 'kind' = 'azurekeyvault'
  and encryp -> 'properties' ->> 'serverKeyType' = 'AzureKeyVault'
  and encryp -> 'properties' ->> 'uri' is not null;

from steampipe-plugin-azure.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.