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.
- 11 Jun, 2016 4 commits
-
-
James Nugent authored
This is time consuming and spams the output of Travis - to run no tests.
-
Paul Stack authored
-
Paul Stack authored
When using winrm config block, we had an address issue. This is no longer a set but a list (As a list fits it more approp) ``` make testacc TEST=./builtin/providers/azurerm TESTARGS='-run=TestAccAzureRMVirtualMachine_' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /vendor/) TF_ACC=1 go test ./builtin/providers/azurerm -v -run=TestAccAzureRMVirtualMachine_ -timeout 120m === RUN TestAccAzureRMVirtualMachine_basicLinuxMachine --- PASS: TestAccAzureRMVirtualMachine_basicLinuxMachine (587.80s) === RUN TestAccAzureRMVirtualMachine_tags --- PASS: TestAccAzureRMVirtualMachine_tags (554.53s) === RUN TestAccAzureRMVirtualMachine_updateMachineSize --- PASS: TestAccAzureRMVirtualMachine_updateMachineSize (612.52s) === RUN TestAccAzureRMVirtualMachine_basicWindowsMachine --- PASS: TestAccAzureRMVirtualMachine_basicWindowsMachine (765.90s) === RUN TestAccAzureRMVirtualMachine_windowsUnattendedConfig --- PASS: TestAccAzureRMVirtualMachine_windowsUnattendedConfig (770.53s) === RUN TestAccAzureRMVirtualMachine_winRMConfig --- PASS: TestAccAzureRMVirtualMachine_winRMConfig (827.90s) PASS ok github.com/hashicorp/terraform/builtin/providers/azurerm 4119.192s ```
-
Paul Stack authored
-
- 10 Jun, 2016 31 commits
-
-
Paul Hinze authored
-
Paul Hinze authored
Refs #7087
-
Paul Hinze authored
The `-backup` flag no longer applies since `terrafom plan` does not write state. Fixes #7087
-
Paul Stack authored
-
Paul Stack authored
-
Paul Stack authored
`publicly_accessible` to be false
-
Paul Hinze authored
provider/aws: Clean up some map/set test checks
-
Paul Stack authored
-
Paul Hinze authored
Clarify HTTP URL module source docs
-
Paul Stack authored
false Fixes #7035 A known issue in Terraform means that d.GetOk() on a bool which is false will mean it doesn't get evaulated. Therefore, when people set publicly_accessible to false, it will never get evaluated on the Create We are going to make it default to false now
-
Paul Stack authored
-
Paul Hinze authored
core: State "Lineage" concept
-
Paul Stack authored
* provider/azurerm: DNS CNAME resource wasn't posting records Azure changed the API for CNAME at some point and since then we haven't been creating CNAME records. The API changes from []records to a single record This PR changes the schema for dns cnames to have a record parameter and adds a deprecation warning around records. Talked with @jen20 on this and we decided that it's currently broken and we should handle this as part of 0.7 where there are other breaking changes ``` TF_LOG=1 make testacc TEST=./builtin/providers/azurerm TESTARGS='-run=TestAccAzureRMDnsCNameRecord' 2>~/tf.log ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /vendor/) TF_ACC=1 go test ./builtin/providers/azurerm -v -run=TestAccAzureRMDnsCNameRecord -timeout 120m === RUN TestAccAzureRMDnsCNameRecord_basic --- PASS: TestAccAzureRMDnsCNameRecord_basic (97.22s) === RUN TestAccAzureRMDnsCNameRecord_subdomain --- PASS: TestAccAzureRMDnsCNameRecord_subdomain (94.94s) === RUN TestAccAzureRMDnsCNameRecord_updateRecords --- PASS: TestAccAzureRMDnsCNameRecord_updateRecords (116.62s) ``` * Change DNS Records to removed rather than deprecated
-
Paul Hinze authored
-
Paul Hinze authored
provider/azurerm: `azurerm_virtual_machine` Windows_config
-
Paul Hinze authored
-
Paul Hinze authored
OpenStack LBaaS v2 Support
-
Paul Hinze authored
provider/digitalocean: Update of droplet document to add a note about resize
-
stack72 authored
Fixes #7053 where, when using `additional_unattend_config` in `os_profile_windows_config` we got an error as follows: ``` azurerm_virtual_machine.test: [DEBUG] Error setting Virtual Machine Storage OS Profile Windows Configuration: &errors.errorString{s:"Invalid address to set: []string{\"os_profile_windows_config\", \"1534614206\", \"additional_unattend_config\"}"} ```
-
Paul Stack authored
MAS wasn't obvious it was Azure so renamed it to Azure
-
Paul Stack authored
-
clint shryock authored
-
clint shryock authored
-
Maxime Bury authored
* Add basic implementation for remote state on azure * Don't auto-provision the container * Fix compilation errors * Add factory to the remote map * Add documentation * Add acceptance tests
-
Paul Hinze authored
make linux amd64 binaries static again.
-
Paul Hinze authored
Update tests for new map count indicator
-
clint shryock authored
-
clint shryock authored
-
Martin Atkins authored
The lineage of a state is an identifier shared by a set of states whose serials are meaningfully comparable because they are produced by progressive Refresh/Apply operations from the same initial empty state. This is initialized as a type-4 (random) UUID when a new state is initialized and then preserved on all other changes. Since states before this change will not have lineage but users may wish to set a lineage for an existing state in order to get the safety benefits it will grow to imply, an empty lineage is considered to be compatible with all lineages.
-
Clint authored
-
Gabi Davar authored
* regression caused by mitchellh/gox#49 * pass CGO_ENABLED=0
-
- 09 Jun, 2016 5 commits
-
-
Clint authored
-
Clint authored
-
Clint authored
provider/aws: Rename parameter_group_name to db_cluster_parameter_group_name (supersedes #7068) (#7083) * modify parameter_group_name to db_cluster_parameter_group_name #7046 * provider/aws: Deprecate parameter_group_name in RDS Cluster Use db_cluster_parameter_group_name instead
-
Paul Hinze authored
-
Clint authored
Allows the updating of Lambda functions on name change alone
-