Metadata-Version: 2.1
Name: saltext.azurerm
Version: 3.0.0
Summary: Salt Extension Modules for Azure Resource Manager
Home-page: https://github.com/salt-extensions/saltext-azurerm
Author: EITR Technologies, LLC
Author-email: devops@eitr.tech
License: Apache Software License
Project-URL: Source, https://github.com/salt-extensions/saltext-azurerm
Project-URL: Tracker, https://github.com/salt-extensions/saltext-azurerm/issues
Keywords: salt-extension,salt,azure,msazure,cloud,microsoft,azurerm
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE.txt
Requires-Dist: azure-batch (==12.0.0)
Requires-Dist: azure-common (==1.1.28)
Requires-Dist: azure-graphrbac (==0.61.1)
Requires-Dist: azure-keyvault (==4.2.0)
Requires-Dist: azure-identity (==1.10.0)
Requires-Dist: azure-core (==1.24.2)
Requires-Dist: azure-mgmt-authorization (==2.0.0)
Requires-Dist: azure-mgmt-batch (==16.2.0)
Requires-Dist: azure-mgmt-compute (==27.1.0)
Requires-Dist: azure-mgmt-dns (==8.0.0)
Requires-Dist: azure-mgmt-privatedns (==1.0.0)
Requires-Dist: azure-mgmt-keyvault (==10.1.0)
Requires-Dist: azure-mgmt-monitor (==6.0.1)
Requires-Dist: azure-mgmt-msi (==6.0.1)
Requires-Dist: azure-mgmt-network (==20.0.0)
Requires-Dist: azure-mgmt-resource (==21.1.0)
Requires-Dist: azure-mgmt-storage (==21.0.0)
Requires-Dist: azure-mgmt-subscription (==3.0.0)
Requires-Dist: azure-mgmt-web (==6.1.0)
Requires-Dist: azure-storage-blob (==12.12.0)
Requires-Dist: azure-storage-common (==2.1.0)
Requires-Dist: azure-storage-file (==2.1.0)
Requires-Dist: azure-storage-nspkg (==3.1.0)
Requires-Dist: azure-storage-queue (==12.3.0)
Requires-Dist: msrest (==0.7.1)
Requires-Dist: msrestazure (==0.6.4)
Provides-Extra: dev
Requires-Dist: nox (==2022.1.7) ; extra == 'dev'
Requires-Dist: pre-commit (==2.13.0) ; extra == 'dev'
Requires-Dist: pylint (<2.14.0) ; extra == 'dev'
Requires-Dist: SaltPyLint ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx (>=3.5.1) ; extra == 'docs'
Requires-Dist: Jinja2 ; extra == 'docs'
Requires-Dist: furo ; extra == 'docs'
Requires-Dist: sphinx-copybutton ; extra == 'docs'
Requires-Dist: sphinx-prompt ; extra == 'docs'
Requires-Dist: sphinxcontrib-spelling ; extra == 'docs'
Requires-Dist: importlib-metadata (<=4.13.0) ; extra == 'docs'
Provides-Extra: docsauto
Requires-Dist: sphinx-autobuild ; extra == 'docsauto'
Provides-Extra: release
Requires-Dist: twine ; extra == 'release'
Requires-Dist: wheel ; extra == 'release'
Provides-Extra: tests
Requires-Dist: mock (>=3.0.5) ; extra == 'tests'
Requires-Dist: pytest (>=7.2.0) ; extra == 'tests'
Requires-Dist: pytest-salt-factories (>=1.0.0rc23) ; extra == 'tests'
Requires-Dist: pytest-ordering ; extra == 'tests'
Requires-Dist: Jinja2 ; extra == 'tests'

# Salt Extension Modules for Azure Resource Manager

[![Documentation Status](https://readthedocs.org/projects/saltext-azurerm/badge/?version=latest)](https://saltext-azurerm.readthedocs.io/en/latest/?badge=latest)

This is a collection of Salt extension modules for use with  Microsoft Azure Resource Manager

## Security

If you think you've found a security vulnerability, see
[Salt's security guide][security].

## User Documentation

This README is more for contributing to the project. If you just want to get
started, check out the [User Documentation][docs].

## Contributing

The saltext-azurerm project team welcomes contributions from the community.

The [Salt Contributing guide][salt-contributing] has a lot of relevant
information, but if you'd like to jump right in here's how to get started:


    # Clone the repo
    git clone --origin salt git@github.com:salt-extensions/saltext-azurerm.git

    # Change to the repo dir
    cd saltext-azurerm

    # Create a new venv
    python3 -m venv env --prompt azurerm
    source env/bin/activate

    # On mac, you may need to upgrade pip
    python -m pip install --upgrade pip

    # On WSL or some flavors of linux you may need to install the `enchant`
    # library in order to build the docs
    sudo apt-get install -y enchant

    # Install extension + test/dev/doc dependencies into your environment
    python -m pip install -e .[tests,dev,docs]

    # Run tests!
    python -m nox -e tests-3

    # skip requirements install for next time
    export SKIP_REQUIREMENTS_INSTALL=1

    # Build the docs, serve, and view in your web browser:
    python -m nox -e docs && (cd docs/_build/html; python -m webbrowser localhost:8000; python -m http.server; cd -)


Writing code isn't the only way to contribute! We value contributions in any of
these areas:

* Documentation - especially examples of how to use this module to solve
  specific problems.
* Triaging [issues][issues] and participating in [discussions][discussions]
* Reviewing [Pull Requests][PRs] (we really like
  [Conventional Comments][comments]!)

You could also contribute in other ways:

* Writing blog posts
* Posting on social media about how you used Salt+Prometheus to solve your
  problems, including videos
* Giving talks at conferences
* Publishing videos
* Asking/answering questions in IRC, Slack, or email groups

Any of these things are super valuable to our community, and we sincerely
appreciate every contribution!


For more information, build the docs and head over to http://localhost:8000/ —
that's where you'll find the rest of the documentation.


[security]: https://github.com/saltstack/salt/blob/master/SECURITY.md
[salt-contributing]: https://docs.saltproject.io/en/master/topics/development/contributing.html
[issues]: https://github.com/salt-extensions/saltext-azurerm/issues
[PRs]: https://github.com/salt-extensions/saltext-azurerm/pulls
[discussions]: https://github.com/salt-extensions/saltext-azurerm/discussions
[comments]: https://conventionalcomments.org/
[docs]: https://docs.saltproject.io/salt/extensions/saltext-azurerm/en/latest/index.html
