Skip to content

Instantly share code, notes, and snippets.

@thiagocaiubi
Created October 22, 2017 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagocaiubi/4030764cf958207a125c28e9e856253e to your computer and use it in GitHub Desktop.
Save thiagocaiubi/4030764cf958207a125c28e9e856253e to your computer and use it in GitHub Desktop.
☁ /tmp terraform init
Initializing provider plugins...
- Checking for available provider plugins on https://releases.hashicorp.com...
- Downloading plugin for provider "azurerm" (0.2.2)...
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
☁ /tmp terraform apply
azurerm_resource_group.test: Creating...
location: "" => "westus"
name: "" => "acceptanceTestResourceGroup1"
tags.%: "" => "<computed>"
azurerm_resource_group.test: Creation complete after 1s (ID: /subscriptions/b3ce8b57-1153-476a-95c5-...rceGroups/acceptanceTestResourceGroup1)
azurerm_route_table.test: Creating...
location: "" => "westus"
name: "" => "acceptanceTestRouteTable1"
resource_group_name: "" => "acceptanceTestResourceGroup1"
route.#: "" => "<computed>"
subnets.#: "" => "<computed>"
tags.%: "" => "<computed>"
azurerm_route_table.test: Still creating... (10s elapsed)
azurerm_route_table.test: Creation complete after 13s (ID: /subscriptions/b3ce8b57-1153-476a-95c5-.../routeTables/acceptanceTestRouteTable1)
azurerm_route.test: Creating...
address_prefix: "" => "10.1.0.0/16"
name: "" => "acceptanceTestRoute1"
next_hop_in_ip_address: "" => "<computed>"
next_hop_type: "" => "vnetlocal"
resource_group_name: "" => "acceptanceTestResourceGroup1"
route_table_name: "" => "acceptanceTestRouteTable1"
azurerm_route.test: Still creating... (10s elapsed)
azurerm_route.test: Creation complete after 12s (ID: /subscriptions/b3ce8b57-1153-476a-95c5-...outeTable1/routes/acceptanceTestRoute1)
Apply complete! Resources: 3 added, 0 changed, 0 destroyed.
☁ /tmp terraform apply
azurerm_resource_group.test: Refreshing state... (ID: /subscriptions/b3ce8b57-1153-476a-95c5-...rceGroups/acceptanceTestResourceGroup1)
azurerm_route_table.test: Refreshing state... (ID: /subscriptions/b3ce8b57-1153-476a-95c5-.../routeTables/acceptanceTestRouteTable1)
azurerm_route.test: Refreshing state... (ID: /subscriptions/b3ce8b57-1153-476a-95c5-...outeTable1/routes/acceptanceTestRoute1)
Apply complete! Resources: 0 added, 0 changed, 0 destroyed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment