This project is mirrored from https://:*****@github.com/hashicorp/terraform.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 23 May, 2016 9 commits
-
-
Sander van Harmelen authored
provider/cloudstack: list network ACLs with VPC IDs
-
clint shryock authored
-
stack72 authored
-
stack72 authored
-
-
Minku Lee authored
-
Paul Stack authored
-
stack72 authored
-
stack72 authored
-
- 22 May, 2016 2 commits
-
-
Joshua Spence authored
Closes #6100. Set the default value for the `description` field to be "Managed by Terraform".
-
Minku Lee authored
-
- 21 May, 2016 2 commits
-
-
Paul Stack authored
-
dkalleg authored
Gives the user the ability to specify the controller type they would like to connect their disk to. Supported options are scsi and ide.
-
- 20 May, 2016 24 commits
-
-
clint shryock authored
-
clint shryock authored
* 'master' of github.com:hashicorp/terraform: Update CHANGELOG.md Update CHANGELOG.md core: honor "destroy" diffs for data resources provider/azurerm: `azurerm_network_interface` diffs didn't match during apply providers/google: Don't fail deleting disks that don't exist.
-
clint shryock authored
Fixes #5924
-
James Nugent authored
-
James Nugent authored
providers/google: Don't fail deleting disks that don't exist.
-
James Nugent authored
-
-
James Nugent authored
provider/azurerm: `azurerm_network_interface` diffs didn't match during apply
-
Paul Stack authored
-
Paul Stack authored
`azurerm_network_interface` As requested in #6803 ``` ```
-
Clint authored
* provider/aws: Update documentation to use t2.micro, provide Classic options
-
James Nugent authored
-
Martin Atkins authored
Previously the "planDestroy" pass would correctly produce a destroy diff, but the "apply" pass would just ignore it and make a fresh diff, turning it back into a "create" because data resources are always eager to refresh. Now we consider the previous diff when re-diffing during apply and so we can preserve the plan to destroy and then ultimately actually "destroy" the data resource (remove from the state) when we get to ReadDataApply. This ensures that the state is left empty after "terraform destroy"; previously we would leave behind data resource states.
-
James Nugent authored
-
Clint authored
-
Paul Stack authored
* provider/aws: Add support for Skipping Final Snapshot in RDS Cluster
-
Paul Stack authored
-
Paul Stack authored
-
James Rasell authored
When stage_name is not passed to the resource aws_api_gateway_deployment a terraform apply will fail. This is because the stage_name is required and not optional.
-
Paul Stack authored
-
Martin Atkins authored
* Grafana provider * grafana_data_source resource. Allows data sources to be created in Grafana. Supports all data source types that are accepted in the current version of Grafana, and will support any future ones that fit into the existing structure. * Vendoring of apparentlymart/go-grafana-api This is in anticipation of adding a Grafana provider plugin. * grafana_dashboard resource * Website documentation for the Grafana provider.
-
Paul Stack authored
-
stack72 authored
apply The IP COnfiguration block of `azurerm_network_interface` didn't have a hash created in a way that changes to the optional params were being picked up: ``` ~ azurerm_network_interface.test ip_configuration.273485505.name: "testconfiguration1" => "" ip_configuration.273485505.private_ip_address_allocation: "dynamic" => "" ip_configuration.273485505.subnet_id: "/subscriptions/34ca515c-4629-458e-bf7c-738d77e0d0ea/resourceGroups/acctestrg/providers/Microsoft.Network/virtualNetworks/acctvn/subnets/acctsub" => "" ip_configuration.~273485505.load_balancer_backend_address_pools_ids.#: "" => "<computed>" ip_configuration.~273485505.load_balancer_inbound_nat_rules_ids.#: "" => "<computed>" ip_configuration.~273485505.name: "" => "testconfiguration1" ip_configuration.~273485505.private_ip_address: "" => "<computed>" ip_configuration.~273485505.private_ip_address_allocation: "" => "dynamic" ip_configuration.~273485505.public_ip_address_id: "" => "${azurerm_public_ip.test.id}" ip_configuration.~273485505.subnet_id: "" => "/subscriptions/34ca515c-4629-458e-bf7c-738d77e0d0ea/resourceGroups/acctestrg/providers/Microsoft.Network/virtualNetworks/acctvn/subnets/acctsub" ``` This caused the following error: ``` Error applying plan: 1 error(s) occurred: * azurerm_network_interface.test: diffs didn't match during apply. This is a bug with Terraform and should be reported as a GitHub Issue. Please include the following information in your report: ``` Notice that the hash didn't change. This change adds the remaining optional params to the hash so that the hash id will change. ``` ~ azurerm_network_interface.test ip_configuration.4255411321.load_balancer_backend_address_pools_ids.#: "" => "<computed>" ip_configuration.4255411321.load_balancer_inbound_nat_rules_ids.#: "" => "<computed>" ip_configuration.4255411321.name: "" => "testconfiguration1" ip_configuration.4255411321.private_ip_address: "" => "<computed>" ip_configuration.4255411321.private_ip_address_allocation: "" => "dynamic" ip_configuration.4255411321.public_ip_address_id: "" => "/subscriptions/34ca515c-4629-458e-bf7c-738d77e0d0ea/resourceGroups/acctestrg/providers/Microsoft.Network/publicIPAddresses/public-ip" ip_configuration.4255411321.subnet_id: "" => "/subscriptions/34ca515c-4629-458e-bf7c-738d77e0d0ea/resourceGroups/acctestrg/providers/Microsoft.Network/virtualNetworks/acctvn/subnets/acctsub" ip_configuration.966273186.name: "testconfiguration1" => "" ip_configuration.966273186.private_ip_address_allocation: "dynamic" => "" ip_configuration.966273186.subnet_id: "/subscriptions/34ca515c-4629-458e-bf7c-738d77e0d0ea/resourceGroups/acctestrg/providers/Microsoft.Network/virtualNetworks/acctvn/subnets/acctsub" => "" ``` This allows the Update to work as expected :) ``` azurerm_network_interface.test: Modifications complete Apply complete! Resources: 0 added, 1 changed, 0 destroyed. ```
-
Devon Harvey authored
-
- 19 May, 2016 3 commits
-
-
Ricard Clau authored
-
James Nugent authored
-
James Nugent authored
Merge branch 'glasser/jsonencode-list-map' of https://github.com/meteor/terraform into meteor-glasser/jsonencode-list-map
-