heintonny / tf-plan-pr-comment

blinqas/tf-plan-pr-comment
MIT License
6 stars 0 forks source link

Review Plan Output #2

Closed github-actions[bot] closed 1 year ago

github-actions[bot] commented 1 year ago

Changes detected. Evaluate Terraform plan output carefully before you merge the pull request.

github-actions[bot] commented 1 year ago

Terraform Plan Essential Output

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # azurerm_network_security_group.example will be created
  + resource "azurerm_network_security_group" "example" {
      + id                  = (known after apply)
      + location            = "northeurope"
      + name                = "example-nsg"
      + resource_group_name = "example-rg"
      + security_rule       = (known after apply)
    }

  # azurerm_resource_group.example will be created
  + resource "azurerm_resource_group" "example" {
      + id       = (known after apply)
      + location = "northeurope"
      + name     = "example-rg"
    }

  # azurerm_route_table.example will be created
  + resource "azurerm_route_table" "example" {
      + disable_bgp_route_propagation = false
      + id                            = (known after apply)
      + location                      = "northeurope"
      + name                          = "example-route-table"
      + resource_group_name           = "example-rg"
      + route                         = (known after apply)
      + subnets                       = (known after apply)
    }

  # azurerm_subnet.example will be created
  + resource "azurerm_subnet" "example" {
      + address_prefixes                               = [
          + "10.0.1.0/24",
        ]
      + enforce_private_link_endpoint_network_policies = (known after apply)
      + enforce_private_link_service_network_policies  = (known after apply)
      + id                                             = (known after apply)
      + name                                           = "internal"
      + private_endpoint_network_policies_enabled      = true
      + private_link_service_network_policies_enabled  = true
      + resource_group_name                            = "example-rg"
      + service_endpoints                              = [
          + "Microsoft.Storage",
        ]
      + virtual_network_name                           = "example-vnet"
    }

  # azurerm_subnet_network_security_group_association.example will be created
  + resource "azurerm_subnet_network_security_group_association" "example" {
      + id                        = (known after apply)
      + network_security_group_id = (known after apply)
      + subnet_id                 = (known after apply)
    }

  # azurerm_subnet_route_table_association.example will be created
  + resource "azurerm_subnet_route_table_association" "example" {
      + id             = (known after apply)
      + route_table_id = (known after apply)
      + subnet_id      = (known after apply)
    }

  # azurerm_virtual_network.example will be created
  + resource "azurerm_virtual_network" "example" {
      + address_space       = [
          + "10.0.0.0/16",
        ]
      + dns_servers         = (known after apply)
      + guid                = (known after apply)
      + id                  = (known after apply)
      + location            = "northeurope"
      + name                = "example-vnet"
      + resource_group_name = "example-rg"
      + subnet              = (known after apply)
    }

Plan: 7 to add, 0 to change, 0 to destroy.

─────────────────────────────────────────────────────────────────────────────

Saved the plan to: tfplan

To perform exactly these actions, run the following command to apply:
    terraform apply "tfplan"
github-actions[bot] commented 1 year ago

:tada: This PR is included in version 1.1.0 :tada:

The release is available on GitHub release

Your semantic-release bot :package::rocket: