Skip to content
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

feat: adding optional description field to created subnets #66

Commits on Sep 5, 2019

  1. feat: adding optional description field to created subnets

    This allows subnets to optionally be created with a description.
    
    For example:
    
    ```
        subnets = [
            {
                subnet_name           = "subnet-01"
                subnet_ip             = "10.10.10.0/24"
                subnet_region         = "us-west1"
            },
            {
                subnet_name           = "subnet-02"
                subnet_ip             = "10.10.20.0/24"
                subnet_region         = "us-west1"
                subnet_private_access = "true"
                subnet_flow_logs      = "true"
                description           = "This subnet has a description"
            },
    ```
    tfhartmann committed Sep 5, 2019
    Configuration menu
    Copy the full SHA
    ea8b4b6 View commit details
    Browse the repository at this point in the history
  2. docs: Updated the README

    tfhartmann committed Sep 5, 2019
    Configuration menu
    Copy the full SHA
    0784627 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2019

  1. Revert "docs: Updated the README"

    This reverts commit 0784627.
    tfhartmann committed Sep 6, 2019
    Configuration menu
    Copy the full SHA
    8c8b54c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6556120 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    011e273 View commit details
    Browse the repository at this point in the history