Metadata-Version: 2.1
Name: pulumi-google-tag-manager
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/nuage-studio/pulumi-google-tag-manager
License: UNKNOWN
Description: [![Deploy](https://get.pulumi.com/new/button.svg)](https://app.pulumi.com/new)
        
        # pulumi-google-tag-manager
        
        This project contains a pip packaged named `pulumi-google-tag-manager` which allows Google Tag Manager and Google Analytics resources to be managed in Pulumi.
        
        An example Pulumi program which uses this package is present in the `example` folder.
        
        ## Prerequesits
        
        * Install the package into your Pulumi project using `pip`
        ```
        $ pip install pulumi-google-tag-manager
        ```
        
        
        * Set your Google credentials in your stack config:
        
        ```
        $ pulumi config set aws:region <region>
        $ pulumi config set google_api_key_file <google-api-key-file>
        $ pulumi config set ga_account_id <google-analytics-manager-account-id>
        $ pulumi config set gtm_account_id <google-tag-manager-account-id>
        ```
        
        You will need to ensure that your API key represents a service worker with Project Owner permissions, and that you have added this user to the GTM users.
        
        
        ## Directory structure
        
        ```
        .
        .
        ├── README.md
        ├── example
        │   ├── Pulumi.yaml
        │   ├── README.md
        │   └── __main__.py
        ├── pulumi_google_tag_manager
        │   ├── dynamic_providers
        │   │   ├── __init__.py
        │   │   ├── container.py
        │   │   ├── container_provider.py
        │   │   ├── custom_html_tag.py
        │   │   ├── custom_html_tag_provider.py
        │   │   ├── tag.py
        │   │   ├── tag_provider.py
        │   │   ├── workspace.py
        │   │   └── workspace_provider.py
        │   ├── service.py
        │   └── templates
        │       ├── __init__.py
        │       ├── gtm_tag.html
        │       └── gtm_tag_noscript.html
        ├── requirements.txt
        ├── setup.py
        ```
        
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
