Metadata-Version: 2.1
Name: c7n-azure
Version: 0.2
Summary: Cloud Custodian - Azure Support
Home-page: https://github.com/capitalone/cloud-custodian
Maintainer: Kapil Thangavelu
Maintainer-email: kapil.foss@gmail.com
License: Apache-2.0
Description: 
        # Cloud Custodian - Azure Support
        
        This a plugin to Cloud Custodian that adds Azure support.
        
        ## Install Cloud Custodian and Azure Plugin
        
        The Azure provider must be installed as a separate package in addition to c7n. 
        
            $ virtualenv custodian
            $ source custodian/bin/activate
            (custodian) $ pip install c7n
            (custodian) $ pip install c7n_azure
        
        
        ## Write your first policy
        
        A policy specifies the following items:
        
        - The type of resource to run the policy against
        - Filters to narrow down the set of resources
        - Actions to take on the filtered set of resources
        
        For this tutorial we will add a tag to all virtual machines with the name "Hello" and the value "World".
        
        Create a file named ``custodian.yml`` with this content:
        
            policies:
                - name: my-first-policy
                  description: |
                    Adds a tag to all virtual machines
                  resource: azure.vm
                  actions:
                    - type: tag
                      tag: Hello
                      value: World
        
        ## Run your policy
        
        First, choose one of the supported authentication mechanisms and either log in to Azure CLI or set
        environment variables as documented in [Authentication](http://capitalone.github.io/cloud-custodian/docs/azure/authentication.html#azure-authentication).
        
            custodian run --output-dir=. custodian.yml
        
        
        If successful, you should see output similar to the following on the command line
        
            2016-12-20 08:35:06,133: custodian.policy:INFO Running policy my-first-policy resource: azure.vm
            2016-12-20 08:35:07,514: custodian.policy:INFO policy: my-first-policy resource:azure.vm has count:1 time:1.38
            2016-12-20 08:35:08,188: custodian.policy:INFO policy: my-first-policy action: tag: 1 execution_time: 0.67
        
        
        You should also find a new ``my-first-policy`` directory with a log and other
        files (subsequent runs will append to the log by default rather than
        overwriting it). 
        
        ## Links
        - [Getting Started](http://capitalone.github.io/cloud-custodian/docs/azure/gettingstarted.html)
        - [Example Scenarios](http://capitalone.github.io/cloud-custodian/docs/azure/examples/index.html)
        - [Example Policies](http://capitalone.github.io/cloud-custodian/docs/azure/policy/index.html)
        
        
        
        
        
Platform: UNKNOWN
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Distributed Computing
Description-Content-Type: text/markdown
