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.
- 27 Mar, 2017 1 commit
-
-
peay authored
-
- 26 Mar, 2017 4 commits
-
-
Paul Stack authored
-
Joe Topjian authored
This commit accounts for a 409 response when a LBaaS v2 pool is being created. Rather than error out, this should be considered a pending state.
-
Paul Stack authored
-
Joe Topjian authored
The OS_DEBUG feature has worked out great, but frequent logging of the service catalog during client initialization can make logging very chatty. This commit omits the service catalog in the logs.
-
- 25 Mar, 2017 11 commits
-
-
Paul Stack authored
-
Paul Stack authored
-
Jasmin Gacic authored
-
Paul Stack authored
-
Joe Topjian authored
-
Paul Stack authored
-
Joe Topjian authored
This commit deprecates the floating_ip attributes from the openstack_compute_instance_v2 resource. It is recommended to use either the openstack_compute_floatingip_associate resource or configure an openstack_networking_port_v2 resource with a floating IP.
-
Paul Stack authored
-
Joe Topjian authored
This commit deprecates the volume attribute in the openstack_compute_instance_v2 resource. It's recommended to either use the block_device attribute or the openstack_compute_volume_attach_v2 resource.
-
Joe Topjian authored
provider/openstack: Fixing typo in secgroup rule timeout test
-
Joe Topjian authored
-
- 24 Mar, 2017 19 commits
-
-
Sean Chittenden authored
* Add the `consul` check type to the `circonus_check` resource. * Fix a tab-complete fail. `Parse` != `Path`, but lexically close. * Dept of 2nd thoughts: `s/service_name/service/g`
-
Clint authored
-
Jon Oden authored
* fix bool vs Compatobool value used in flattendBackends * remove log line * update test case
-
Paul Stack authored
-
Paul Stack authored
Fixes: #12983 ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSALBListenerRule_' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/24 19:31:26 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSALBListenerRule_ -timeout 120m === RUN TestAccAWSALBListenerRule_basic --- PASS: TestAccAWSALBListenerRule_basic (247.76s) === RUN TestAccAWSALBListenerRule_multipleConditionThrowsError --- PASS: TestAccAWSALBListenerRule_multipleConditionThrowsError (0.02s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 247.815s ```
-
Paul Stack authored
-
Paul Stack authored
same Fixes: #13012 ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSNetworkAclRule_allProtocol' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/24 18:42:05 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSNetworkAclRule_allProtocol -timeout 120m === RUN TestAccAWSNetworkAclRule_allProtocol --- PASS: TestAccAWSNetworkAclRule_allProtocol (53.95s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 53.974s ```
-
Matthew Frahry authored
Fixes route53 test
-
Tom Harvey authored
-
James Bardin authored
remove consul tests from travis runs
-
= authored
-
James Bardin authored
they have timing out too often
-
James Bardin authored
reify the list values before validation
-
James Bardin authored
If the list was marked as computed, all values will be raw config values. Fetch the individual keys from the config to get any known values before validating.
-
James Bardin authored
Interpolation strings for non-computed values in a list were being passed to the schema's ValidateFunc.
-
Paul Stack authored
-
demonwy authored
* add new rds resource and some bugs fix * add docs * fix validator conflix fix validator conflix
-
Paul Stack authored
Fixes: #13035 It was pointed out in the issue that the addition of a new parameter with a default value AND a ForceNew: true is causing Terraform to try and recreate the VPC This PR migrates the state to add the default value of false for `assign_generated_ipv6_cidr_block` ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAWSVpcMigrateState' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/24 12:51:41 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAWSVpcMigrateState -timeout 120m === RUN TestAWSVpcMigrateState 2017/03/24 12:52:26 [INFO] Found AWS VPC State v0; migrating to v1 2017/03/24 12:52:26 [DEBUG] Attributes before migration: map[string]string{"assign_generated_ipv6_cidr_block":"true"} 2017/03/24 12:52:26 [DEBUG] Attributes after migration: map[string]string{"assign_generated_ipv6_cidr_block":"false"} 2017/03/24 12:52:26 [INFO] Found AWS VPC State v0; migrating to v1 2017/03/24 12:52:26 [DEBUG] Attributes before migration: map[string]string{} 2017/03/24 12:52:26 [DEBUG] Attributes after migration: map[string]string{"assign_generated_ipv6_cidr_block":"false"} --- PASS: TestAWSVpcMigrateState (0.00s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 0.024s ```
-
Naveen Nalam authored
As experienced during testing, the value of the zone needs to be the zone name, and not the NS1 internal ID.
-
- 23 Mar, 2017 5 commits
-
-
Paul Stack authored
-
Paul Stack authored
Fixes: #13011 ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSNetworkAclRule_' 2 ↵ ✚ ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/23 17:45:25 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSNetworkAclRule_ -timeout 120m === RUN TestAccAWSNetworkAclRule_basic --- PASS: TestAccAWSNetworkAclRule_basic (41.10s) === RUN TestAccAWSNetworkAclRule_missingParam --- PASS: TestAccAWSNetworkAclRule_missingParam (21.21s) === RUN TestAccAWSNetworkAclRule_ipv6 --- PASS: TestAccAWSNetworkAclRule_ipv6 (53.00s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 115.333s ```
-
Peter McAtominey authored
-
Kevin Visscher authored
Fixes #6514. * add support for setting the primary network interface * Tests and documentation for primary_network_interface_id
-
James Bardin authored
Fix S3 named state creation and backend tests
-