Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Targeted aws_db_instance destruction does not respect explicit timeout settings #14444

Closed
mattzimmerman opened this issue May 12, 2017 · 4 comments
Assignees

Comments

@mattzimmerman
Copy link

Terraform Version

0.9.4

Affected Resource(s)

  • aws_db_instance

Terraform Configuration Files

resource "aws_db_instance" "anonymizer-database" {
  identifier = "db-anonymizer"
  publicly_accessible = false
  instance_class = "${var.qa-db-instance-type}"
  storage_type = "${var.db-storage-type}"
  storage_encrypted = "${var.db-storage-encrypted}"
  
  engine = "${var.db-engine}"
  engine_version = "${var.db-major-engine-version}"
  allocated_storage = "${var.db-storage-limit}"
  username = "${var.rds-username}"
  password = "${var.rds-password}"

  license_model = "${var.db-license-model}"
  multi_az = "${var.db-multi-az}"
  backup_retention_period = "${var.db-backup-rentention-period}"

  skip_final_snapshot = true
  copy_tags_to_snapshot = true
  apply_immediately = "${var.db-apply-immediately}"

  vpc_security_group_ids = ["${aws_security_group.sql-server-anonymizer.id}"]
  db_subnet_group_name = "${data.terraform_remote_state.domain.persistence-subnet-group}"
  
  option_group_name = "${aws_db_option_group.sql-server-anonymizer-options.name}"

  timeouts {
    create = "45m"
    delete = "45m"
    update = "90m"
  }
}

Debug Output

aws_db_instance.anonymizer-database: Destroying... (ID: db-anonymizer)
aws_db_instance.anonymizer-database: Still destroying... (ID: db-anonymizer, 10s elapsed)
...
aws_db_instance.anonymizer-database: Still destroying... (ID: db-anonymizer, 20m0s elapsed)
Error applying plan:
1 error(s) occurred:
* aws_db_instance.anonymizer-database (destroy): 1 error(s) occurred:
* aws_db_instance.anonymizer-database: timeout while waiting for resource to be gone (last state: 'deleting', timeout: 20m0s)

Expected Behavior

aws_db_instance resource destruction should have waited 45 minutes before failing the terraform destroy run due to explicit timeout settings in the aws_db_instance.

Actual Behavior

aws_db_instancedestruction failed after a 20 minute timeout.

Steps to Reproduce

Please list the steps required to reproduce the issue, for example:
terraform destroy -target="aws_db_instance.anonymizer-database" -input=false -refresh=true -force

@catsby
Copy link
Member

catsby commented May 15, 2017

Thanks @mattzimmerman I'll look into this. It may be related / fixed with #14396

@catsby
Copy link
Member

catsby commented Jun 23, 2017

This was finally addressed in hashicorp/terraform-provider-aws#949, thanks!

slacksec pushed a commit to slacksec/golang-devops-stuff that referenced this issue Aug 21, 2017
…9..6562e97799

6562e97799 Update CHANGELOG.md
fd88c98c20 website: documentation for local values
3a30bfe845 core: evaluate locals and return them for interpolation
5b66953d1d core: graph nodes and edges for local values
d41d58967f config: parsing of local.foo variables for interpolation
f6797d6cb0 config: parsing of "locals" blocks in configuration
e2272f71a0 Update our documentation to push "Getting Started" better (#15866)
e42130bf14 Update README with link to "Getting started" guide (#15865)
647c91aec9 Update CHANGELOG.md
2cbc74705e Merge pull request #15862 from hashicorp/f-remove-lgpl-deps
313086a12b add missing dependency: azure/go-ntlmssp
6e599672e1 Remove LGPL dependencies
2be4154027 Update CHANGELOG.md
e359930530 Update CHANGELOG.md
28b5708fef config: jsonencode function to support nested lists and maps
0da6b95ef8 Merge pull request #15841 from hashicorp/jbardin/azurerm-backend
68da0390b7 remove legacy azure remote state code
216a68a41b update backend docs to reflect new azurerm name
5d50e764ea deprecate the "azure" backend name
0e873d70ed Merge pull request #15840 from hashicorp/jbardin/deprecate-backend
cc454fcc56 add the ability to mark a backend as deprecated
23b783616e Merge pull request #13036 from pmcatominey/azure-backend
b74b26bcfa backend: alias azurerm to azure
6b9b5ec297 backend/azure: update to latest SDK
4a767987ed vendor github.com/Azure/azure-sdk-for-go/arm/resources/resources
f9e8e54835 backend: convert Azure remote state to a backend Added locking support via blob leasing (requires that an empty state is created before any lock can be acquired.
746881065a Merge pull request #15836 from hashicorp/cmd-init-remove-whitespace
aabab16069 command/init: Remove extra whitespace
a4d182f4e5 Update CHANGELOG.md
817d1c4869 Output duration in UiHook after successful operation completion.
fa154bbb48 Update CHANGELOG.md
18af7750d4 Merge pull request #14720 from sevagh/master
117f44bcda config: Add "flatten" interpolation function
f1042a1338 Merge pull request #15835 from hashicorp/jbardin/mock-provider-race
bf97909b8a core: document all of the fields on the Plan struct
db6ef69e5b fix race in MockResourceProvider
08339b004b release: clean up after v0.10.2
a1d06eb973 v0.10.2
98171102d9 update CHANGELOG.md
6ecf535ed9 Merge pull request #15819 from hashicorp/f-schema-set-hashequal
698d888210 Update CHANGELOG.md
355c00be78 Merge pull request #15825 from hashicorp/jbardin/go-plugin
1ae7b418b4 Merge pull request #15826 from hashicorp/tf-bundle-fix-crash
bcd692af06 tools/terraform-bundle: Refactor & simplify messages
f4c648f649 tools/terraform-bundle: Add missing Ui to ProviderInstaller (fix crash)
181c5e01f6 update go-plugin
287a5eb66a helper/schema: More tests for Set.HashEqual
ca42980e49 helper/schema: Add Set.HashEqual
bb00fd47c0 release: clean up after v0.10.1
f6d16263a0 v0.10.1
ecdc96406d update CHANGELOG.md
3dd0f93aed Merge pull request #15816 from hashicorp/jbardin/plugin-logger
714df97a02 specify a logger for go-plugin
faee1c370b Update CHANGELOG.md
82c6caa666 Merge pull request #15804 from hashicorp/plugin-transparency
28b33c9299 plugin: Display version + source when initializing plugins
95952655cf Merge pull request #15812 from rkhozinov/patch-1
e9ffa24174 Fix a typo in CHANGELOG.md
81f9c78122 Adding `resource_group_name` back in, fixes #15610 (#15809)
5c8ff928ba build: scripted local build process for docker images
b1e925e9d2 Merge pull request #15802 from hashicorp/vendor-bump-mitchellh-cli
38cb98fb0c Comply w/ latest changes in mitchellh/cli
655f1d6500 vendor: Bump github.com/mitchellh/cli to latest
eb20352f41 Merge pull request #15800 from hashicorp/lower-log-lvl-dag
93613ee526 terraform+dag: Set lower log levels
ee5fc3b986 govendor fetch github.com/hashicorp/go-plugin/...
d756e59824 Merge pull request #15780 from hashicorp/jbardin/input-module-vars
ea3e87b584 Merge pull request #15768 from hashicorp/jbardin/remote-import
4bc88d2585 website: correct the spelling of the -from-module arg to "terraform init"
1664d4e228 test with bad interpolation during Input
97bb7cb65c Don't allow interpolation failure to stop Input
48acba2c9b Merge pull request #15775 from hashicorp/dev-program-remove
f291994a3f Guides: remove the provider development program for now
5bcc1bae59 Merge pull request #15769 from hashicorp/jbardin/discovery-paths
a87161b100 Merge pull request #15772 from hashicorp/jbardin/remote-exec-backoff
2bb5007690 Merge pull request #15683 from hashicorp/jbardin/remote-state-lineage
52dbf94834 keep .terraform.d/plugins for discovery
db42015342 backoff retries in remote-exec provisioner
37932c3cd6 make state_rm flag description match state_mv
4034f988df update import command docs
54998933f5 load Meta.PluginOverrides in dicovery
fa20d43d80 test loading of Meta.PluginOverrides
41ab0aef7a Add missing OS_ARCH dir to global plugin paths
e3748901b4 Don't ForceLocal for the import backend
8b3b678c2f Merge pull request #15760 from alex1x/master
5f3e76203b Fix titles on partner contact table on provider development program guide
5769ee745d Merge pull request #15738 from hashicorp/jbardin/s3-key-validation
4c7cd549cd don't allow leading slashes in s3 remote state key
56240023a9 Merge pull request #15755 from hashicorp/jbardin/init-docs
a56a97a5f5 mention 'terraform.d/plugins` for automation
2597500b47 reword init documentation for consistency
399856001a Merge pull request #15745 from ctavan/improve-provider-plugin-docs
77f74c37c8 Merge pull request #15749 from gregswift/typo-additional
944a9301df  Fix typo of additional
50108d305d Merge pull request #15748 from kbrowns/patch-1
3477868804 PR feedback
40bb7612c1 small typo correction
59c9ca5b96 Merge pull request #15737 from josephholsten/clean-vendor
08670763aa Add salt-masterless provisioner doc
867760ed56 Add salt-masterless provisioner
b413061fd8 Document how to provide provider plugin overrides
153202c3b0 vendor: rm github.com/hashicorp/golang-lru(/simplelru)
eccfa6de5c vendor: rm github.com/hashicorp/go-msgpack/codec
05ce58279e vendor: rm github.com/armon/go-metrics
3db3502487 Update CHANGELOG.md
4acdc53a56 Merge pull request #15695 from radeksimko/f-config-reserve-id
550197db50 Merge pull request #15698 from cblecker/go1.8.3
11668d5c8a Merge pull request #15599 from alrs/terraform-tests-swallowed-errors
66971cef70 Update CHANGELOG.md
3600f0b730 Merge pull request #15723 from hashicorp/f-get-boolean-non-default
d969f97e73 update tests
e76049eb0a update CHANGELOG.md
fa272e8c9c Add more specific exists tests
eadda50f02 Merge pull request #15652 from hashicorp/jbardin/state-command
8a8b43185d Merge pull request #15663 from hashicorp/jbardin/diff-field-reader
55d18dcef2 update state rm amd mv docs
dc30761497 Merge pull request #15567 from hashicorp/jbardin/consul-update
268138dbd4 Rename to GetOkExists
6339f950c7 Merge pull request #15722 from hashicorp/b-remove-verbose-debug-log
de3015cebf Remove overly verbose DEBUG log
fb50afb0a1 Merge pull request #15708 from nfagerlund/aug2017_consul_example_link
8c7bfde292 Docs: Fix broken links and a broken example
ed5bbacab9 Merge pull request #15702 from hashicorp/f-update-dockerfile
3db869b7fe update dockerfile to not include version prerelease string
473d08d532 Update Vagrantfile to go1.8.3
29b77cabec Update travis to go1.8.3 and add testing for go1.9rc1
8e6a0845c1 Cleanup after 0.10 release
2041053ee9 v0.10.0
67ceb1ab07 config: Make 'id' a reserved field name
94a1ca7341 move 0.10.0 (Unreleased) for release script
e3e6eee311 Merge pull request #15691 from hashicorp/jbardin/changelog
6134082a10 update CHANGELOG for 0.10.0
270bbdb19b core: Add `GetOkRaw` schema function
9b9bfb9fec Add provider dev program guide (#15677)
07b0101fb5 update workspace new test for inmem backend
32ae05c342 fix strict remote.State lineage check
c3e943bed2 add another failing test for remote.State lineage
16e8e405c7 create failing test cases for remote lineage issue
18d71f273e make inmem behave more like remote backends
5deef9621d export Reset()
ac60ddcd40 Support named states in inmeme backend
6a869f89bf fix broken/old link in Commands/Workspace
470448d8ce update CHANGELOG.md
efb007542b Merge pull request #15666 from hashicorp/f-init-from-module
d02b4fd9b8 Merge pull request #15664 from hashicorp/jbardin/s3-backend-docs
8a7a0a7459 command: terraform init -from-module=...
f63b216016 Update S3 backend docs to reflect new workspaces
ca68723c91 memoize DiffFieldReader.ReadField
51547ad2ba add tests for state commands through a backend
5b4ae36cb0 don't print help for state loading errors
2e7c8ab76a update commands.go to use StateMeta
33ba6774e0 Make the state commands use the real command.Meta
45a9edb763 make state mv and rm work with remote states
870617d22d Merge pull request #15634 from fossabot/master
d6baeef3d7 Add license scan report and status
5be673f996 Update README logo URL
23ef0e3247 website: more-elaborate "terraform init" docs
539f0db74e examples: remove openstack example
d32a0e8e1f examples: remove digitalocean example
590bbe9b31 examples: Remove the consul example
583c24a3c2 examples: Update README to reflect 0.10 init/apply workflow
0e0c7883e4 examples: Remove the clc example
3b95c85f18 examples: Remove the Google Cloud examples
29ebe07e1e Update link to the AWS example
0c69e46649 Update CHANGELOG.md
f98cfc9018 Merge pull request #15617 from svanharmelen/b-chef-provisioner
fc3782f051 Document failure behavior for `import` command.
1069aab47a Document changes to terraform import in the release notes.
b01f68f343 provisioner/chef: fix panic
e079e9d339 examples: remove azure examples
9be103b62d examples: Remove AliCloud and AWS examples
1070d04b07 Remove consul context adapter for RenewPeriodic
7584ac1247 update consul vendor
0bca383b6b Merge pull request #15528 from alrs/command-swallowed-errors
822a98a0b4 Fix swallowed tests in terraform package tests
c40be7cd14 Merge pull request #15598 from alrs/helper-swallowed-error
e34f194b31 Fix swallowed err in acctest package
119996b815 Return immediately after newly-added error condition
8666d36609 Merge #15596: docker image build configurations
1fac5de738 release: clean up after v0.10.0-rc1
243951c70a v0.10.0-rc1
2b3b62dab5 build: documentation for the new docker image release process
0f9af4dfa9 build: configuration for building "release" docker images
909c45488f build: Move the "full" Dockerfile into the root of our main repo
cb5739f1a0 update CHANGELOG.md
f6dace3476 website: document the Checkpoint service and how to disable it
da0aec1b32 website: attempt to clarify "terraform import" usage docs
9a7ffbfb1b Merge pull request #15566 from hashicorp/jbardin/state-serial
dd9a54c661 Merge pull request #15435 from hashicorp/jbardin/state-path-message
c57dbebe84 documentation: explain provider dev environment setup
eb02467298 Merge pull request #15588 from hashicorp/jbardin/no-graph-config
f10163ecc7 graph should not panic with no config
a2ef0ce9a3 Update CHANGELOG.md
ac250d2792 plugin/discovery: trim off .exe suffix when parsing filenames
fd4a2fa262 website: Correct usage for force-unlock command
8e0fefda1f Merge #15509: End-to-end test harness and some initial tests
23f9c8785e command/e2etest: an initial test for the primary workflow
52df81ee49 command/e2etest: test that we can install provider plugins
0e0b0d125a command/e2etest: "terraform version" test
fee61a44b4 command/e2etest: end-to-end testing harness
50f412bff4 Merge pull request #15557 from hashicorp/jbardin/consul-lock-sessions
bb13786663 Merge pull request #15559 from hashicorp/jbardin/protocol-version
a1727ec4c2 Add warning to mismatched plan state
004f6cc9e2 Update CHANGELOG.md
f979b8feef Enforce field names to be alphanum lowercase + underscores (#15562)
2b84e786e9 allow missing x-terraform-protocol-version
87b2c0cf8f Merge pull request #15556 from hashicorp/jbardin/backend-tests
bcb11f6d89 have the consul client manage the lock session
193d4b868c backend state tests must honor lineage
aa1e5e996a README: Add link to provider repos to "Developing" (#15546)
dd056ccf38 Merge pull request #15547 from hashicorp/b-fix-travis
3d396e108a fix travis for unit tests
8501d83e6c Fix swallowed errors in command package.
a12daf5aba Update CHANGELOG.md
07cbd54fbc Actively disallow reserved field names in schema (#15522)
a4ee13b8c2 Merge pull request #15506 from hashicorp/jbardin/helper-testing
60ea42cd1c Add testProviderConfig to import tests
8e2ee53ed3 Merge pull request #15501 from hashicorp/jbardin/race
657932261b Make sure shadow.closeWalker doesn't copy Mutexes
ac9abf579f Merge pull request #15497 from hashicorp/jbardin/race
c66dd48b6e make shadow.Value a Locker
583cc350a9 fix minor races in workspace tests
b7166905fa v0.10.0-beta2
6ba049470e Merge pull request #15490 from hashicorp/jbardin/meta-process-order
f7f1e8e406 Sort arguments in Meta.process
0fdcf2c01e properly cleanup and print correct error messages
ccf27a631f Update CHANGELOG.md
0543574383 website: update upgrade-guide for plugin filename convention
b16f94611d Update CHANGELOG.md
1f1f898695 Merge #13306: automatically load variables from .auto.tfvars files
4bf2269784 Add test case for autoloading tfvars
e67ecb5ce2 Restructure Meta.process to logically group code
8d98fdecac Autoload only .auto.tfvars files
006744bfe0 Use all tfvars files in working directory
29b2368fa0 Update CHANGELOG.md
39c4d6ab1f Merge #15424: Improve robustness of state persistence handling
dfbbc89c66 Update CHANGELOG.md
fee1197cf9 command: terraform state rm to require at least one argument
fb397060eb add some Serial checks to apply and refresh tests
054716c397 use testStateRead helper in apply tests
501cbeaffe testState shouldn't rely on mods from WriteState
d5ebad33a4 Update CHANGELOG.md
9d7fce2f69 command: "terraform workspace show" to print current workspace name
fba5decae5 update TestState helper
4d53eaa6df state: more robust handling of state Serial
909989acfa terraform-bundle tool for bundling Terraform with providers
610fcb605e plugin/discovery: allow customizing the OS/arch for auto-install
9ee2fbaa2b Update CHANGELOG.md
14614a5423 command/validate: Add flag to check that all variables are specified (#13872)
86a73701e9 Update CHANGELOG.md
41fc408ed0 Merge pull request #15462 from hashicorp/f-add-skip-verify-env-var
6369d669a9 Update CHANGELOG.md
194bfe292b vendor: govendor fetch github.com/hashicorp/hil/...
9944ea6886 core: Skip provider checksum validation based on env var
e6ddd62583 Ensures that subnets are created in the desired AZ (#15443)
3fb76f3ebb only show state path help if state is local
45eb050b31 Update CHANGELOG.md
31b8c3c6ad Update README.md
da1c45b566 Merge pull request #15412 from hashicorp/jbardin/windows-delete-workspace
4a160d7fa0 website: A note about where the root parts of the website live now
ed20444f63 update CHANGELOG
5066fa2151 Merge pull request #13871 from fatmcgav/swift_move_to_backend
96e6bf89ec remote/swift: Remove un-used code
1c78dfb286 Unlock state before workspace deletion
59e106fbd9 Update CHANGELOG.md
c487c0bd0e Merge #7251: terraform apply -auto-approve=false
6afa72f6ca command: minor adjustments to the -auto-approve=false UX
14af879fe0 command: also print plan for destroy
039d36bf91 command: add "apply -auto-approve=false" flag
e7f7395e9e Update CHANGELOG.md
45a4ba1ea7 Merge #15344: Avoid double-counting resources to create
22074f1029 Merge pull request #15408 from hashicorp/jbardin/import-plugin-dir
e7f09ea336 Update CHANGELOG.md
7775ef809b Display correct to and from backends in copy message when migrating to new remote state (#15318)
4b85e91ac5 Update s3.html.md (#15299)
42cbb716b7 Merge pull request #15370 from rowleyaj/s3_backend_workspaces
2dd464cf8f Clarify field description
beebd5cee3 improve discovery logging
85b9069eb7 test import with -plugin-dir
8cf04f8e4e Added IntAtLeast and IntAtMost validation functions. (#15403)
4e175cc351 Update CHANGELOG.md
13a2500755 Update CHANGELOG.md
0cbd51c365 find -plugin-dir during import
8e25830554 Update CHANGELOG.md
3df164502a command: don't prompt for state migration if TF_INPUT is set
dc53528350 Merge pull request #15379 from bernielomax/bernielomax/fix-private-bitbucket-repo-example
6f62c0c660 Add google_compute_backend_service to imports (#15275)
5159047ca7 Fix typo amd => and (#15398)
0ca5eab545 core: Context-level test for stub EvalDiff
5654a676d9 core: Skip diff hooks for stubs on eval altogether
50cd33f781 core: Move Refreh/Plan diff count to general operation test
656115387b core: Simplify TestNodeRefreshableManagedResourceEvalTree_scaleOut
b486780cf0 core: evalTreeManagedScaleOutResource -> evalTreeManagedResourceNoState
f40df21988 update CHANGELOG.md
2b14a6d3b8 Update CHANGELOG.md
606e7c991f flatmap: be resilient to lying "foo.#" key
61b96f0860 Merge pull request #15388 from hashicorp/jbardin/state-mv-backend
833cc9a6c5 Fix state mv/rm -backup documentation
6e7baaaeff don't load the backend when -state is provided
5f939b42fe test that `state mv -state` doesn't use Backend
9c874f3b94 Merge pull request #15383 from hashicorp/jbardin/s3-delete-state
1fa7667ad4 s3 backend should use Client.Delete to DeleteState
ebf4413e95 add named named state delete+create-delete test
ffddf96603 Fix issue with reading timeouts on Delete
11dc0c5fdf Regression test for #767 (https://github.com/hashicorp/terraform/issues/14444)
c80a21610d provider/google: SQL Database Importability (#15372)
5f5089f77f The "Private Bitbucket Repos" example did not work for me. I had to specify the "ref="as a URL param for this to work. Otherwise Terraform produced the following error:
c4857bdbaf release: clean up after v0.10.0-beta1
a26ff83279 v0.10.0-beta1
22f36a6e43 Document new field for S3 backend
77cbd3bfc8 Merge pull request #15371 from hashicorp/jbardin/reinit-error
b14677bd9a look for new error output
4893fcc24f improve plugin error formatting
ac937a890d improve plugin reinit error text
103ab20b00 add required and found versions to error output
7a955f990c make display plugin checksum error to user
db40dc06ab Add configurable workspace prefix for S3 Backend
5be15ed77c have the local backend provide a plugin init msg
2f4e9a6797 Remove core-dev from README
de2927d0b4 core: fix some typos in comments
83622cf19b Update CHANGELOG.md
0dc6d97a37 command/format: minor adjustments to plan rendering
53c0ff4017 core: ParseResourceAddressForInstanceDiff function
482c1f1ea5 core: ResourceAddress.Less for sorting resource addresses
0e3aedcea3 core: Remove ResourceRefreshPlannableTransformer
01e3386e13 core: Add resource count scale-out EvalTree test
42ebbc6e0e core: ScaleIn should have been ScaleOut
2051b286e0 Merge pull request #15360 from hashicorp/jbardin/get-provider-err
e059eb80d1 add test for signature mismatch
40e2fbb8e9 command: init to allow plugin init without backend init
2cca6f10fa return sig error when fetching a plugin
f249386c8a core: Test to ensure PostDiff is ignoring stubs
3dc7d618f7 command: avoid empty string constraints in plugin install errors
565790d8da core: Fix scale-out refresh graph test
45528b2217 core: Instance/EvalDiff.Quiet -> Stub
aa130b070a allow metrics collection (#15352)
c10f5caf05 Merge pull request #15345 from hashicorp/jbardin/plugin-sig
9c2fe3456b command: purge unused plugins as a side effect of plugin installation
d48dcbb4a5 command: more-helpful error messages from plugin installation
af2111f24e plugin/discovery: sentinel error values for Get errors
5328c6a551 udpate revision for all x/crypto packages
91e65066d8 vendor golang.org/x/crypto/openpgp
020959546e add init -verify-plugin to website docs
0a47228065 add -verify-plugins flag to init
13d835f996 test signature verification
415d562d36 add  signature verification
eef933f2a7 core: Don't count scaled-out resources twice in the UI
afe891a80e Merge pull request #15335 from hashicorp/jbardin/ux-no-plugins
6728c48d8c fix whitespace around backend init success message
da385c4268 Don't show plugin init message if there are none
63d4c0efe1 website: guide to running Terraform in automation
13807950d3 Update CHANGELOG.md
a8c58b081c core: -target option to also select resources in descendant modules
d3eb2b2d28 core: ResourceAddress.Contains method
9777174be1 Merge pull request #15325 from hashicorp/jbardin/init-docs
71b67b9338 make BC note in CHANGELOG
4bbabb3df0 update init website docs
2e57d284cb Merge pull request #15323 from hashicorp/jbardin/constraint-suggestion
790c973320 Update CHANGELOG.md
96d08e8aac vendor: go fetch github.com/apparentlymart/go-cidr/cidr
5963ea6f26 Update CHANGELOG.md
3009156eff Merge pull request #15313 from hashicorp/jbardin/discovery-paths
681661a539 #15291: config/interpolate_funcs: Added contains() function to test if a given element is present in the list
cc1a9a5b8f vendor: Update github.com/terraform-providers/terraform-provider-openstack/openstack
ec99b6910b remove "~> 0.0" constraint suggestions
6faace287d remove restriction on unversioned plugins
270eedd4b8 always pass in the full plugin path to dicovery
ba5b0dc609 mostly remove OS_ARCH knowledge from discovery
14a2c04ddf provider/azurerm: Azurerm example ci updates (#15310)
23dff5124a Warn that amis are region specific (#15312)
5d19148f47 Merge pull request #15307 from hashicorp/jbardin/plugin-vendor-dir
be2069ac81 add -plugin-dir option
000e860706 Add plugin dir scaffolding
df81167cd3 Create CHANGELOG.md
7e180aec92 Refactor the provisioner validation function (#15273)
36956d863b provider/azurerm: Example of VM Scale Set with Ubuntu (#15290)
a37a70b133 provider/azurerm: Example of Openshift origin (#15294)
956ab165bd Merge pull request #15280 from meteor/glasser/unique-id-timestamp-again
0a1f9156dc Fix resource.UniqueId to be properly ordered over multiple runs
f723270e3e search the vendor directory for plugins
06d4247a75 Merge pull request #15289 from hashicorp/jbardin/init-pwd
8e98004989 Create CHANGELOG.md
21a646f6fe Use the InstanceState to query any connection details (#15271)
4f5e92e4c0 reverse init test to check for dataDir in PWD
55bf19e548 always write to dataDir in the current directory
c2550e78cf Rename openstack provider for swift remote backend
af5467b9fd website: Update swift backend documentation
ee2e390f85 remote/swift: Migrate Swift remote state to a backend Move the Swift State from a legacy remote state to an official backend. Add `container` and `archive_container` configuration variables, and deprecate `path` and `archive_path` variables.
9706042ddd Create CHANGELOG.md
6979a07754 command: init -upgrade for provider plugins
af4c82d151 plugin/discovery: Installer.PurgeUnused method
f753974bb3 plugin/discovery: Installer interface, and provider implementation
5834333ea3 command: terraform get -upgrade
7ed70bb00e website: new filesystem layout for core/provider split
bc92696344 Merge pull request #15261 from hashicorp/update-bitbucket-cloud-docs
87be64b1ac provider/azurerm: Example of Wordpress MySql Replication (#15260)
62acef9611 lifecycle block not in aws_autoscaling_group (#15268)
00dcf9baac Merge pull request #15262 from hashicorp/jbardin/extra-logging
c0b1761096 prevent log output during init
be900e8085 Merge pull request #15258 from hashicorp/jbardin/remove-providers
dfcfcb7f99  add more context to BB Cloud docs - update content referring to GitHub - expand on repository fetch - note scopes that users must have in BB to create webhooks
cbbbcea4b9 stop err scanner goroutines between tests
77a32f3df0 remove "core" distinction
e8b02c495e final vendor cleanup
b37af119e5 govendor remove +unused
1bd0205e49 remove errcheck
7e7f53954d remove internal provider test from command pkg
5b58c79051 vendor aws and openstack providers
808b504bcf rename openstack provider for swift remote state
ac959af6b4 rename aws provider import in s3 backend
7cc2f020ef remove provider bins
81ac0ed204 re-generate plugin list
6fcc3e0104 remove hard-coded opc provider and providers tests
1ab40eae35 remove builtin providers
4e85f552e7 Merge pull request #15246 from hashicorp/b-fix-cmd-provider-crash
a30007b41d Merge pull request #15032 from hashicorp/jbardin/init
458cac7f49 Update ISSUE_TEMPLATE (#15222)
f5ff67c530 command/providers: Add regression test
ee30df3efd command/providers: Enable processing of meta-parameters
86fbcfac83 command/providers: Avoid crash when no configs found
e50a57bcb7 Update CHANGELOG
f7b5d536a4 Create CHANGELOG.md
5f24491ea6 Update CHANGELOG.md
fc56f13f1f Create CHANGELOG.md
698c22c924 Merge #14952: rename "state environments" to "workspaces"
f7ce6a15f8 backend: Operation.Environment renamed to "Workspace"
5a57962a32 website: replace "env" command docs with "workspace" command docs
418a8a8bc9 command + backend: rename various API objects to "Workspace" terminology
33a266d61c provider/terraform: "workspace" argument instead of "environment"
3be1d3148b website: documentation for state workspaces
d4e5abe0eb core: terraform.env variable is now terraform.workspace
5f9f13ab8f command: show warnings from backend config validation
5026e1d313 backend/local: "environment_dir" renamed to "workspace_dir"
31d556894f command: shallow UI-focused rename of "environment" to "workspace"
c25d848ffb core: allow overriding environment name via env var
2bfcdbbd08 change init args to remove source copy
73139ba6aa Merge pull request #15208 from hashicorp/0.10-plugins
d1c50efb01 change providers.json to lock.json
08592c2602 update plugin name in command test
840978b2d5 udpate to plugin name convention
1b201e67ea fix releases path and protocol header
a529b64cc8 better init error output
fdbfc17fae missing constraints passed erroniously
283ae0c7c4 fix comment and add some logging in discovery
ea3d9c86ba sort constraints for consistent output
190d5fae76 vendor x/net/html
55d5e8a689 website: initial v0.10 upgrade guide
98ef947ed1 website: correction of heading and usage in "providers" command docs
fb405ff296 website: new documentation about provider version configuration
766f8e5d64 command init: remove confusing uses of "environment" in the usage
eaf5a62197 website: don't recommend to use "terraform init" to clone examples
d9b8c3cac0 website: "Initialization" section in the getting started guide
3c429b3628 command init: show log output for each provider plugin downloaded
1b673746fd core: don't allow core or providers to change between plan and apply
4571a16b15 command: remove Meta.forceProviderSHA256s
9aae06db97 command: update mockGetProvider.GetProvider for new interface
4ba20f9c1c command init: show suggested constraints for unconstrained providers
f70318097a config: fix provider version constraint validation
dbbafbd43f clean up plugin fetching
e0f2235f66 update init command with new GetProvider signature
48d37131e0 more tests for fetching providers
5f053a2e64 refactor GetProvider
8ad67991a5 check protocol version on plugins
fdeb3d929c Add Versions.Sort
032f71f1ff command: produce provider lock file during "terraform init"
04bcece59c plugin/discovery: handle the -Xn suffix used by auto-installed plugins
6ba6508ec9 command: pass the locked plugin hashes into ContextOpts
aa1c644499 core: allow setting required plugin hashes on Context
720670fae7 command: helper to manage the provider plugins lock file
7d0a98af46 command: provider resolver to also check SHA256 constraints when set
e3401947a6 plugin/discovery: PluginRequirements can specify SHA256 digests
9a398a7793 command: require resource to be in config before import
7d8719150c command: validate import resource address early
f6305fcc27 command: remove commented-out, misplaced tests
190626e2a8 core: improve consistency of ParseResourceAddress errors
b82ef2e30e core: ResourceAddress.MatchesConfig method
f695e8b330 provider/test: allow test_resource to be imported
edf3cd7159 core: ResourceAddress.WholeModuleAddress method
05a5eb0047 core: ResourceAddress.HasResourceSpec method
044ad5ef59 rename some Constraints methods per code review
211f5b5d6e add test for newestVersion
46190590cb change []*Version to []Version
a547e7c2f0 add releases version listing test
2994c6ac5d add init getPlugin test
4c32cd432a make getProvider pluggable
66ebff90cd move some more plugin search path logic to command
2749946f5c basic plugin getter
fa49c69793 expose Version.NewerThan
7d2d951f27 Rename VersionSet to Constraints
718ede0636 have Meta.Backend use a Config rather than loading
d7d8ea9543 website: Initial docs for the new "providers" subcommand
3af0ecdf01 command: "terraform providers" command
8b037432e7 vendoring of treeprint library
ccb3a7c584 core: expose terraform.ModuleTreeDependencies as a public function
4ab8973520 core: provide config to all import context tests
c835ef8ff3 Update tests for the new ProviderResolver interface
7ca592ac06 core: use ResourceProviderResolver to resolve providers
ba3ee00837 core: ResourceProviderResolver interface
d6b6dbb5c6 command: correct provider name in the test fixture for push
0573ff6793 helper/resource: pass config when testing import
1c0b715999 core: return explicit caption if tests fail to construct context
8bfc6e7b1c core: add missing ResourceState types in context tests
25a6d8f471 core: build a module dependency tree from config+state
c20f25a10e moduledeps: Module.Equals
cfc08ae7e3 plugin/discovery: provide an AllVersions set
e89b5390ca moduledeps: new package for representing module dependencies
a1e29ae290 plugin/discovery: use go-version instead of semver
a8a64c66c0 config/module: helper to visit all modules in a tree
32a5c62639 config: parse provider version constraints into a constraint map
0b14c2cdb3 Resolve resource provider types in config package
7e7d4c70df config: allow version constraints on providers, but validate them
9b4f15c261 plugin: move Client function into plugin, from plugin/discovery
73fc9985b2 config: add "version" argument to provider blocks, disabled
8364383c35 Push plugin discovery down into command package
bcd395e6bd plugin/discovery: Allow overriding the paths of certain plugin names
551bc9c4a4 plugin/discovery: build plugin clients
0a08214a74 plugin/discovery: SHA256() method to get the hash of each plugin
a94e9a4362 plugin/discovery: find plugins in a given set of directories
39deb1ff6b plugin/discovery: helpers for wrangling plugin versions
f69f7e623b Create CHANGELOG.md
6e7ee05392 Merge branch 'gh3424-vgw-route-prop'
c7d6dfd7e7 provider/aws: go vet issue with aws_vpn_gateway_route_propagation
6caba26b62 Create CHANGELOG.md
4d7c0d4924 fix aws cidr validation error (#15158)
2c09677bb6 Create CHANGELOG.md
93c6c0de25 provider/google: Add an additional delay when checking for sql operations (#15170)
12d6afd1ee Add missing resources to importability section (#15206)
5aff701866 Create CHANGELOG.md
b465b01355 [MS] provider/azurerm: Data Source for Azure Resource Group (#15022)
d587b68863 provider/aws: Add an explicit depends on for the internet gateway, should help this test pass
cd2a0b476b provider/heroku: Update app test to use new Heroku Space
8c52df5526 provider/heroku: Add support for special HEROKU_SPACES_ORGANIZATION env var for the TestAccHerokuSpace_Basic test (#15191)
7ac8837cc0 provider/azurerm: Add example of Spark and Cassrandra on CentOS (#15123)
2cc8ddfd72 Create CHANGELOG.md
a5c208ef68 provider/kubernetes: Add support for pod (#13571)
6177b479e1 Create CHANGELOG.md
305ae18d2c Rancher V2 provider updates (#13908)
9e0c52c6db release: clean up after v0.9.8
8d560482c3 v0.9.8
ac66207990 Update CHANGELOG.md
a42ebe389c Revert "have StateHook periodically PersistState"
ebec7fbe78 Update CHANGELOG.md
45d193101c provider/google: Add support for draining_timeout_sec to compute_backend_service. (#14559)
c6a8200049 Update CHANGELOG.md
70e8d2d33f provider/aws/spot_fleet_request: fixed reading network associate_public_ip_address configuration (#13748)
3bfc46137a Update CHANGELOG.md
0b6518a29b provider/google: Changed network argument in google_compute_instance_group as optional (#13493)
6c0f6fac13 Fix website version
1b78f50db5 release cleanup after v0.9.7
20ca74d0a0 v0.9.7
f64b5c9480 provider/opc: update opc provider (#15159)
6b3ec0c193 Update CHANGELOG.md
f5cccc6b7f Added private_ip_google_access update support to google_compute_subnetwork. (#15125)
4e1eb9a856 provider/github: Add github importability documentation (#15150)
bc85755c1b Adding support for China/Germany/Government (#15152)
1d6ab977e0 Update CHANGELOG.md
75842077da provider/aws: Add gov and cn hosted zone Ids to aws_elb_hosted_zone data source (#15149)
436903e834 provider/azurerm: Updating the AzureRM Provider Guide (#15148)
fd64162796 Update middleman version (#15130)
15a54ae281 provider/aws: Fix link and add better reference to a parameter in RDS docs (#15138)
2c7fdfdb15 Update CHANGELOG.md
a281a29cb6 provider/openstack: Optimize the printing of request/response headers… (#15086)
1aff439c3d provider/aws: aws_vpn_gateway_route_propagation resource
b34eface7b provider/google: Update bucket storage docs introductions (#15132)
0f113c3cc3 Update CHANGELOG.md
677a418e78 provider/aws: Filter acm certificates by type (#15064)
0c2020926f Update CHANGELOG.md
8acd5641eb Librato Alerts fixes (#15118)
6f8ae776bc provider/digitalocean: Bump godo SDK to 1.1.0 (#15121)
372a80bc42 provider/aws: Add Sweeper setup, Sweepers for DB Option Group, Key Pair (#14773)
3d1e60b504 provider/google: Update compute_disk to read after update, always set size (#15095)
258674a358 Update CHANGELOG.md
3f3664a4e4 provider/aws: Expose reason of EMR cluster termination (#15117)
83764294f8 Update regional backend service documentation to reflect instance group restrictions. (#15097)
afc928d1bc Update CHANGELOG.md
d4dd0fcdac provider/google: Make google_compute_autoscaler use Update instead of Patch. (#15101)
0523ccfad2 provider/google: Update health check tests (#15102)
6cce74d106 Update link to canned GCS ACL's (#15096)
32ad64dbd7 Update CHANGELOG.md
1819303e65 provider/azurerm: Adding data source support for Public IP (#15110)
4019335f39 Update CHANGELOG.md
cfc15e030b fix security group rules bug (#15114)
aac988da93 provider/aws: Fix race condition in Beanstalk acc test (#15116)
683a14853d Update CHANGELOG.md
1812ce2ff3 Add task_parameters parameter to aws_ssm_maintenance_window_task resource (#15104)
d06a4f05d4 Update CHANGELOG.md
e4899de13e provider/aws: New SSM Parameter resource (#15035)
aac43acce3 Update CHANGELOG.md
42133f2077 ISSUE-10272 Lets not look at the requestor id. (#11849)
17b4f0a855 Merge pull request #15108 from philsttr/master
c2a92c5fb4 Correct openstack_lbaas_* to openstack_lb_* sidebars to reflect correct resource type names.
1babdd4e5c update CHANGELOG
c17f5932fa Update CHANGELOG.md
df11150a6a provider/aws: Revoke default ipv6 egress rule for aws_security_group (#15075)
0149e6d1f5 Update CHANGELOG.md
d7f54ed68d provider/aws: Raise timeout for DHCP opts creation (#15084)
a464e97979 provider/aws: Fix Beanstalk App Version acceptance test (#15083)
f08a7362c4 provider/aws: Change aws_kinesis_stream docs to not have id and name the same (#15090)
cb737e89a1 Update CHANGELOG.md
4c16fa9dbb provider/alicloud: Fix allocating public ip bug (#15049)
e7628c39ce Update CHANGELOG.md
0b63007142 fix vpc and vswitch bug while creating vpc and vswitch (#15082)
eed23bd803 Update CHANGELOG.md
b0f815cc58 Allow resizing of Google Cloud persistent disks (#15077)
06562df1e6 Update CHANGELOG.md
27dcc3ba11 Allow heroku spaces to be imported (#14973)
b708a81e24 doc(typo): fix typo in aws_cloudwatch_log_subscription_filter (#15079)
b1f628b9bd Update CHANGELOG.md
7323b4d7eb provider/aws: Retry DB param grp delete on InvalidDBParameterGroupState (#15071)
c0c75638a7 Update CHANGELOG.md
ef4e89c7be [provider/aws] check that we actually have NodeGroupMembers (#13488)
42fccffdf9 Update CHANGELOG.md
cf58139378 provider/aws: Retry ECS svc update on ServiceNotFoundException (#15073)
bb29789582 Update CHANGELOG.md
149bef4b4c provider/kubernetes: Allow sourcing config_path from KUBECONFIG env var (#14889)
72f3c374cf Update CHANGELOG.md
bc83cae0e4 fixed tests. should fail (#14878)
7823ed8eb8 provider/aws: Bump AWS SDK to 1.8.34 (#15072)
8710843fb5 Updating to include #14176
09dcb78b11 Make os_profile optional #11147 (#14176)
ccbab8b5ae Update CHANGELOG.md
2aba79fa96 provider/aws: Add support for a configurable timeout in db_option_group (#15023)
0f5bce9942 Update CHANGELOG.md
89aedb4802 provider/aws: Guard against panic when no aws_default_vpc found (#15070)
1244309579 Fix stringer comments (#15069)
de4ac620a6 Update CHANGELOG.md
110eba294c provider/datadog: make datadog_user verified a computed attribute (#15034)
feb9df8226 Update CHANGELOG.md
f24396b904 provider/aws: Retry ECS svc creation on ClusterNotFoundException (#15066)
9000f2fc31 provider/librato: Update based on Librato API changes (#15060)
fa1a6ab419 Update CHANGELOG.md
b14b81f27d provider/aws: Retry Lambda func creation on IAM error (#15067)
3136600e8f Update CHANGELOG.md
4baaada826 provider/aws: Retry Redshift cluster deletion on InvalidClusterState (#15068)
e10de998eb Update CHANGELOG.md
87562be855 provider/alicloud: Add the function of replacing ecs instance's system disk (#15048)
d6d559a6ab Update importable Google resources (#15059)
ed4678fa95 Merge pull request #15057 from mattyjones/master
41dd795335 fix simple spelling mistake
8243d09acd Url to aws-two-tier example changed. (#15045)
6dc3de0cb2 add new example alicloud-build-lnmp (#15051)
74e5a5ed11 Update CHANGELOG.md
c70c54bd7e fix access_key NOT FOUND bug and nat_gateway diff bug (#15050)
92f5a99e6a Update CHANGELOG.md
a4c9c40c32 Merge pull request #15019 from hashicorp/f-k8s-pvc-unbound-reason
993361be3a Update CHANGELOG.md
f090f0f5f6 Merge pull request #15017 from hashicorp/b-k8s-upgrade-1.6-fix
14a55d57a8 Updated import command provider flag documentation to explicitly specify syntax. (#15030)
be02cb6329 Update CHANGELOG.md
de78838cd4 Fix issues in Cloudwatch Log Group tag (#14886)
47461f2286 Update CHANGELOG.md
e9aaf58098 provider/google: Set instances to computed in compute_instance_group (#15025)
bae0a71a11 Update CHANGELOG.md
971eabb547 provider/vault: Support remounting in the vault_mount resource
1d294aeb45 provider/vault: vault_mount resource
4c742ca9dd Completing the missing AWS CodePipeline docs - fixes #15001 (#15016)
fa22031289 Update CHANGELOG.md
1c56db5ffa rancher_host: error on nil or removed host (#15015)
2b9b89197d docs/kubernetes: Document compatible k8s versions (#15020)
13583b4b8b provider/azurerm: Upgrading to AutoRest v8 (#15006)
b6abf1f2bb provider/kubernetes: Provide more details about why PVC failed to bind
7552331f50 provider/kubernetes: Mark HPA's target_cpu_utilization_percentage as computed
d0d3f37795 provider/kubernetes: Fix failing tests after upgrading to 1.6
8a002b937a provider/kubernetes: Ignore k8s internal labels
483b849448 Update CHANGELOG.md
7d06a9bf43 Merge pull request #13123 from UKCloud/master
08c672ca1e provider/aws: Updated awsconfig_config_rule documentation (#14994)
b6a2eb7859 Fix typo in state rm docs (#15003)
7c758c5661 Use correct names for available Datadog timeboard graph request types (#15008)
d84dfd6904 changes plus acceptance tests for vpn
b22cfa8b80 Update CHANGELOG.md
401c6a95a7 provider/openstack: Add Terraform version to UserAgent string (#14955)
29444aee87 bump the time we wait for RunInstances to succeed
482b7c603c website: fix faulty example for aws_eip data source
e8a16fffd0 docs: Update Lightsail supported regions (#14908)
9ef4dd5a3d Update CHANGELOG.md
802eae3b4b Merge pull request #14992 from hashicorp/b-fix-modify-instance-attribute
4e878aacea Updating the changelog to include #13877
acd586adf2 [MS] provider/azurerm: fixes for bug #8227 and bug #11226 (#13877)
acb38e3782 provider/aws: Fix ModifyInstanceAttribute on new instances
121d8c94f8 Merge pull request #14990 from hashicorp/f-stringer-update
ac177492fb core: Revert stringer changes from earlier commits
68fe08045b provider/azurerm: Fixing broken tests / Making Container Registry `sku` optional (#14983)
76297fc43d Add missing ID from ElasticBeanstalk docs (#14985)
85e2efaac0 Update CHANGELOG.md
6e995323a4 Changes to behaviour of string enum comparison in AzureRM provider (#14861)
ea48d71c0f fixed error message (#14922)
1d70729444 Update CHANGELOG.md
cfcb4dff79 provider/aws: Support import of aws_lambda_event_source_mapping (#14898)
ba625b7436 Updating the changelog to include #14004
df2875045d provider/azurerm: Upgrading to v10 of the Azure SDK (#14004)
0a09a1ea40 provider/opc: Update documentation for the OPC Provider. (#14976)
90ae01e794 Update CHANGELOG.md
bc314ca8a0 provider/aws: Expect exception on deletion of APIG Usage Plan Key (#14958)
12aa4bd56e Update CHANGELOG.md
8fa40c1ce7 provider/aws: Work around IAM eventual consistency in CW Log Subs (#14959)
26fd40dcfd Update CHANGELOG.md
1da7fda417 provider/openstack: Add support for FWaaS routerinsertion extension (#12589)
f27aa3c826 Update CHANGELOG.md
527b7af79e Merge pull request #14956 from fatmcgav/openstack_sort_headers
583aa5d941 Update CHANGELOG.md
79c91e11c8 provider/aws: Add aws elastic beanstalk solution stack (#14944)
c4c3c3f24d docs/google: Add "list" to tags description (#14975)
24846024ab Update CHANGELOG.md
c62f5af65d Merge pull request #14972 from mioi/fix_misleading_error_in_aws_route_20170531
805ff4021e provider/aws: Fix misleading error in aws_route validation
3ddfcdfd39 Update CHANGELOG.md
32d47b384f provider/google: Add CORS support for google_storage_bucket. (#14695)
4e6dcb3a3e google container_cluster master_auth should be optional (#14630)
31ce7aadca Update CHANGELOG.md
0d1718fa83 provider/google: use a mutex to prevent concurrent sql instance operations (#14424)
b463bec369 Update CHANGELOG.md
0845ab8d0f Merge pull request #14964 from hashicorp/b-fix-panic-nil-dead-letter-config
f43653daaf Update CHANGELOG.md
1ab22e1dba Drop the optional WITH token from CREATE ROLE. (#14864)
3d293d413c Update CHANGELOG.md
bebcc8796a export internal tunnel addresses + document (#14835)
f39c5b7c9b provider/gitlab: Improve gitlab documentation (#14827)
c0503a9c26 provider/aws: Add aws_ssm_path_* to aws.erb (#14969)
5b677d8632 provider/fastly: Randomize domain names in tests (#14960)
34b67c513f Update CHANGELOG.md
d3eed78d95 provider/aws: Add support for aws_ssm_patch_baseline (#14954)
d400fe23e0 Update CHANGELOG.md
2ebac5226c PostgreSQL: leaked pg privs (#14817)
00fa6b06b5 Merge pull request #14966 from florianlechner/patch-2
72ae5de963 Merge pull request #14957 from florianlechner/patch-1
fe5fc79a71 Update lb_monitor_v2.html.markdown
6b72e08b72 provider/aws: Fix panic on nil dead_letter_config
b8b1e8006a Update CHANGELOG.md
647a3940ea Merge pull request #13702 from bryanburgers/aws-instance-ipv6
606267cbd2 Update CHANGELOG.md
e28f9c11bf provider/aws: aws_elasticache_cluster data source (#14895)
5c3227b532 adding read methods
7609ea083a Update lb_pool_v2.html.markdown
029ff9801b provider/openstack: Sort request/response headers whilst debugging
9f0394f30c Merge remote-tracking branch 'upstream/master'
991ddf1743 goimports ordered correctly
fdc3c0d78d removing core changes
179e1a1da6 removing core changes
4b31def8ba Update CHANGELOG.md
b17bcd3852 Merge pull request #14923 from hashicorp/f-k8s-upgrade-1.6.1
6a3a3b3b05 Merge pull request #14949 from hashicorp/jbardin/s3-config
eba5093115 Update S3 backend docs
48490a0857 Merge pull request #14946 from alessfg/patch-1
cadf75b28f Merge pull request #14938 from jkodroff/patch-1
e071a8f042 docs/google: Add missing "Required" tags
6b700ff1fb replace lock_table with dynamodb_table in s3 cfg
f1c4100d04 Update CHANGELOG.md
13ed75a3e4 Update CHANGELOG.md
538dc7d257 New Interpolation Function: bcrypt
b802897cea provider/aws: Avoid crash when EgressOnly IGW disappears (#14929)
5d33023d99 Merge pull request #14725 from StackPointCloud/bcrypt
ecc5bfb801 Merge pull request #14937 from hashicorp/jbardin/GH-14927
9548987f96 Merge pull request #14930 from hashicorp/jbardin/consul-cas
c37adf33ea Update CHANGELOG.md
ff1c2b10e0 Merge pull request #14917 from jtopjian/openstack-secgroup-numeric-protocol
82eba5801d Test losing and reacquiring a consul lock
3df48bfc27 relock consul when lock is lost
e8330b6f53 use CAS for consul state Put
e7502454b4 check for nil state in s3 client Get
75100a18c9 Update virtual_machine.html.markdown
d9524a71d4 Update CHANGELOG.md
7894478c8c Merge pull request #14681 from svanharmelen/f-review
ff3166fcae Update CHANGELOG.md
2a3d752834 Add support for changing TTL on DigitalOcean domain records. Fixes #12631 (#14805)
77961be736 Update CHANGELOG.md
f7996e36ea provider/digitalocean: Refresh DO loadbalancer from state if 404 (#14897)
3c8a19f65e docs/provider/azure/vmss: managed_disk_type, typos;sidebar fix for VM resources (#14906) (#14915)
832b7bd456 provider/aws: Randomize IAM role names in flow log tests (#14928)
efd1e1ffb3 provider/aws: Run Configure as part of testAccPreCheck (#14925)
40c6d9b8c5 vendor: Remove references to deleted packages
bcd57a963c Merge pull request #14919 from tombuildsstuff/fixing-docs
209bc1e93a Update CHANGELOG.md
56fbe027c3 Add ability to import Google Compute persistent disks (#14573)
8af9f2d4e6 Adding whitespace to Elastic Transcoder Pipeline docs. Fixes #14870
893b2f74a5 Merge pull request #14914 from hashicorp/pmcatominey/output-docs
2a16352463 provider/kubernetes: Change imports and references after upgrade
59c8c1d020 vendor: k8s.io/client-go/tools/clientcmd/...@v3.0.0-beta.0
dc0713b248 vendor: k8s.io/client-go/util/clock@v3.0.0-beta.0
2decf24737 vendor: k8s.io/client-go/...@v3.0.0-beta.0
03e5f539dd vendor: k8s.io/kubernetes/pkg/client/clientset_generated/clientset@v1.6.1
f7ec2e78cf vendor: k8s.io/apimachinery/...@release-1.6
8f520f55dc vendor: k8s.io/kubernetes/...@v1.6.1
d311417122 provider/openstack: Allow numerical protocols in security group rules
334bfe8eb9 Merge pull request #14916 from jtopjian/openstack-network-create-logging
19008e28af provider/openstack: Re-add missing create option logging
1a5e627b35 Update CHANGELOG.md
c501cb1063 provider/openstack: Add support provider network (#10265)
6d0f507175 Merge pull request #14907 from fatmcgav/openstack_fix_provider_test_os_image
431c2ee4c9 website/docs: correct outputs documentation
40ba1b5487 Added example for globaly load balanced scale sets (#14912)
423bfe0298 Update CHANGELOG.md
0f7de130b1 provider/aws: ForceNew aws_launch_config on ebs_block_device change (#14899)
ad962779e5 docs/kubernetes: Fix sidebar highlighting (#14829)
4642c97f0d [docs] fix paramater name to disable locking for S3 backend (#14911)
8e25c23c84 provider/gitlab: Documentation improvements (#14824)
3dbc83e64b Update CHANGELOG.md
396dbac72f github_team data source: fix wrong set (#14859)
093861492d Update alicloud document to add userdata (#14862)
3c3c08a0cd provider/openstack: Fix issue with providing OS_IMAGE_ID or OS_IMAGE_NAME when running acceptance tests.
34b45c5ad8 [docs] update terraform configuration page to include reference to the backends section (#14894)
ab7cbb1cf9 Fix typo in validators.go (#14900)
9ec28d26a8 doc/provider/gitlab: rename github_token to gitlab_token (#14890)
7b14c84a40 Add Bangalore Data center and update to Ubuntu 16.04 (#14892)
fa1e0bab7f DOCS: The resource name should be consistent. (#14883)
24f5f65bb5 Update CHANGELOG.md
07f89e2728 Export RDS instance and cluster resource id (#14882)
85f2d10e9f docs/kubernetes: Fix import docs (missing namespace) (#14832)
440df3890a Docs: Fix vpc_id argument in AWS route_table resource (#14881)
5ae00b45d5 Merge pull request #14879 from hashicorp/gitlab-sidebar
4597de02e3 Merge pull request #14871 from wchrisjohnson/cj-fixup-librato-sidebar-doc
96e5ed1d93 Adding all of the gitlab resources to the sidebar
e86ffefd13 Fixup the Librato Docs (metrics)
60b162de45 docs: Fix inline comment in AWS instance resource (#14865)
be9ca35f79 Merge pull request #14845 from hashicorp/thrashr888/tfe-doc-snippets
4da1b46d35 Explain purpose of environments better (#14869)
46be301806 Merge pull request #14868 from hashicorp/jbardin/GH-14792
f8bfc0a80d check for empty diff in CountHook.PreApply
dbe9599820 remove dead code
db036d3b86 Update CHANGELOG.md
24202fb3c1 Merge pull request #14578 from caiofilipini/digitalocean-certs
12c2e3222d Update provider docs and add validation (#14863)
c4bbb6e8a5 provider/digitalocean: Remove Optional and ForceNew for computed attr
ddf2cf920f Update CHANGELOG.md
840f974853 Merge pull request #14562 from wchrisjohnson/cj-add-librato-metrics
2b12ddffd0 provider/digitalocean: Mark not_after and sha1_fingerprint as computed
9871ea6c86 Merge pull request #14844 from hashicorp/opc-p-instance-fqdn-1
32d724ee0d provider/digitalocean: Remove unnecessary SetId("") on cert destroy
1d585762dd Merge pull request #14834 from hashicorp/jbardin/state-hook
dc3ed9bb50 Docs: Update atlas_artifact resource to use data
1dfead7c6e Update opc_compute_instance.html.markdown
527d79aa3c removed unused constants
e6b4dc9b42 reduce sleep time
1c76194197 Respond to review feedback
6a0dca93af Restore previous version for now
53a1a4b73b Add documentation for metrics
78b61ad5f8 Cleanup and slight refactors
45c93cfb07 Separate metric test by type
52040c69a4 Fixup bad rebase
002c9985d3 Enable CRUD of metrics
0c649fcbb7 website: don't use regexp for sidebar_current in ovh.erb
f8daafb449 website: correct formatting of gitlab doc preambles
539b491deb website: when building, run middleman in verbose mode
3cf78809b5 website: don't use regex for sidebar_current, in github.erb
8fd5fd5dab website: fix regex
d6fcc82ecc release: clean up after v0.9.6
85e0979c6a v0.9.6
9bb5b60530 Merge pull request #14833 from hashicorp/f-update-opc-provider-vendor
4866f35645 add mutexes to Local, Backup, and InmemState
f0f2220abb add mutexes to remote.State
9e4c0ff2ad call PersistState immediately when cancelling
b73d037761 have StateHook periodically PersistState
eb6ffdeba2 provider/opc: update opc provider vendor
10b7418b01 Fix typo (tesr -> test) (#14825)
96f391dafc Update CHANGELOG.md
9bbebfbb49 Update CHANGELOG.md
db47721e15 provider/openstack: Enable Security Group Updates (#14815)
e6b776fedd Fix gitlab documentation (#14803)
b6b71df0a1 Doc fixes for managed disks in VMs (#14811)
01a673447b Update news section with Google Cloud webinar post-event info (#14816)
1de2cca3da Merge pull request #14818 from jtopjian/openstack-dns-docs-update
513c922b2f provider/openstack: Updating DNS docs
4b9514eeb0 Update CHANGELOG.md
e1c8d760d3 provider/openstack: Add DNS V2 RecordSet resource (#14813)
acedf7228f Update CHANGELOG.md
63ce0dae98 Merge pull request #12411 from drebes/cloud_router
fb6dd8bfbe Update CHANGELOG.md
c675b9e3f8 Merge pull request #14643 from hashicorp/pr-8180
f510ed0377 Update CHANGELOG.md
0ea0d86de4 Change google_compute_target_pool's session_affinity field default to NONE. (#14807)
d59d0a0673 Fix some style things, handle errors.
23a6798491 update CHANGELOG.md
ef1d53934c Merge pull request #14746 from hashicorp/jbardin/s3-consistency
b3795e2d29 remove old state hook code
cf1ef167fe Merge branch 'master' of github.com:hashicorp/terraform
f583394e6f provider/heroku: document how to import an addon
eb22d24ce0 Update CHANGELOG.md
e676813eaa providers/heroku: import heroku_addon resource (#14508)
c5bf7a7c60 fix custom providers snippets (#14806)
91be40a577 add detailed error message s3 checksum mismatch
0022d224e8 store and verify s3 remote state checksum
cd7c5cb61d Merge pull request #14801 from hashicorp/jbardin/validate-computed-object
e1d9ad40d3 Merge pull request #14680 from hashicorp/jbardin/unlock-s3
6bc52be0a5 check for IsComputed when validating a schema obj
d34dee5cc4 Merge pull request #14784 from mattrobenolt/validateobject
ee0b88a788 Update CHANGELOG.md
2c3e8e3cfb provider/kubernetes: Add support for Horizontal Pod Autoscaler (#14763)
cec3430b33 Update CHANGELOG.md
4c6404d012 provider/vsphere: Exposing moid value from vm resource (#14793)
7c6c075640 Update CHANGELOG.md
e4bd7e2430 Load Cloudstack configuration from file (#13926)
17bbdef711 Update CHANGELOG.md
18f2edf729 Add namespcace ID attribute (#14483)
d820ff9ed5 Update CHANGELOG.md
9e90e77be4 provider/gitlab:  Add `gitlab_group` resource (#14490)
c3a76c99da Update sources.html.markdown (#14594)
c08253e8d5 providers/heroku: upgrade vendored cyberdelia/heroku-go client (#14672)
8edaa883fb Merge pull request #14789 from tombuildsstuff/website-fixes
ea44c0eb8a Update CHANGELOG.md
395f1d5bbf provider/gitlab: add `gitlab_deploy_key` (#14734)
a0ebed8fe2 provider/azurerm: Fix example on azurerm_sql_elasticpool (#14788)
3eabfa4c4a Update CHANGELOG.md
da8f71d4c2 provider/openstack: Add support for updating Subnet Allocation Pools (#14782)
e5dcaf7f79 Update CHANGELOG.md
be58c809b6 provider/aws: Add support for X-Ray tracing to aws_lambda_function (#14728)
3242b3c063 Fixing some minor typo's in the docs
b52bf2c887 provider/scaleway: clarify scaleway_server volume attribute (#14772)
b9a3433f6b helper/schema: fix validating nested objects
76d4abd12a Fix typo on state migration input error
48803f5961 Update CHANGELOG.md
dd17c1a78c Merge pull request #14651 from hashicorp/paddy_gcp_detach_deleted_disks
1f2dff6a50 Fix fmt.
7976a03a2d Merge branch 'master' into paddy_gcp_detach_deleted_disks
9253a3e0a3 Update CHANGELOG.md
8db702938e Merge pull request #14774 from hashicorp/paddy_fix_12278_rebase
be17d7ac12 Remove required env var, fix test names.
f5ff3b987d Merge commit '96a67766bf94fdba15f607a9f620cc7df3675a9b' into paddy_fix_12278_rebase
5c85c9cf6c Update CHANGELOG.md
88d9254661 provider/aws: Add ability to define timeouts for DMS replication instance (#14729)
346d34c383 Update CHANGELOG.md
cb5b5c034e provider/aws: Provider ability to enable snapshotting on ElastiCache RG (#14757)
46f1a33222 Update CHANGELOG.md
410b60cb7f Stop requiring multi-vars (splats) to be in array brackets
278fb293ea Update CHANGELOG.md
9cda37205d backend/local: create local state file if backend write fails
2037c1eebf Update bitbucket.html.md (#14761)
e4c2428b83 Update CHANGELOG.md
170533c026 Fixes #14765 Handle migration when restoring db cluster from snapshot (#14766)
3acfcfef8e changing back as per review
ac105b5b18 Merge branch 'master' of github.com:UKCloud/terraform
fee66882f0 removing unecessary config for initial implementation
96a67766bf Corrected test for generating disk from a snapshot URI from another project
d1308c1fe2 Update CHANGELOG.md
dbeb7fde98 Updated debug message in compute_firewall_migrate. (#14743)
5d05b0b7fe provider/google: stop trying to set mysqlReplicaConfiguration on read (#14373)
4df07f2ed9 Added a test acceptance for the new functionality. GOOGLE_COMPUTE_DISK_SNAPSHOT_URI must be set to a valid snapshot's uri like one of the output of gcloud compute snapshots list --uri
674d635926 Golint from Atom
deb9dae35c Be more specific on the regexp used to detect URI
e510289d2b Enable use of URI for snapshot name
3df593315f provider/google: add failover parameter to sql database instance (#14336)
56f89e20d7 provider/google: Add import support to google_sql_user (#14457)
6ac78404e0 provider/google: Refactor google_storage_bucket tests (#14694)
979ef66dbc Update CHANGELOG.md
9a7a243c5c Merge pull request #14733 from hashicorp/f-env-var-prerelease-string
bc3075c48b Missing short name in the service scope (Google compute instance) (#14633)
0ffcadd058 Update CHANGELOG.md
cfb83f9d87 Merge pull request #14704 from jtopjian/openstack-instance-tenantnet-fix
bef916d607 Update CHANGELOG.md
91ab75991d core: use codified default for prerelease string
a8bf3d8ab0 Merge pull request #14721 from jtopjian/os-dns
bd68789006 core: Use environment variables to set VersionPrerelease at compile time
fd472e4a86 Update CHANGELOG.md
722436a880 Merge pull request #14727 from hashicorp/b-fix-instance-panic
64d61085fb Update CHANGELOG.md
8e130b15e4 Add 'aws_kms_ciphertext' data source. (#14691)
b8fb1b5ed9 ignition: tests as unit test (#14703)
dd89c922c3 Update CHANGELOG.md
e7bfdea274 Add github_team data source (#14614)
94e6128fcf Update CHANGELOG.md
cf8568fe55 provider/docker network alias (#14710)
bd99d7ce88 Update CHANGELOG.md
b90ad412d5 provider/aws: Increase timeout for creating security group (#14724)
c1f4a6e9f8 provider/aws: Fix panic on instance shutdown
f3d86dca83 Update CHANGELOG.md
d85b8f0613 Merge pull request #14669 from hashicorp/b-add-validation-iam-role-policy
bca159160e Added missing dependencies
c0d5411751 docs/community: Fix Radek's bio (#14706)
161494435b Update CHANGELOG.md
542640c953 provider/aws: Do not dereference source_Dest_check in aws_instance (#14723)
4b85d0c290 Remove duplicate 'no-color' entry from `refresh` command documentation (#14716)
fd9c045d07 Update CHANGELOG.md
600e587430 provider/aws: Configurable timeouts for EC2 instance + spot instance (#14711)
a8d3971c20 Update CHANGELOG.md
a6617c598a provider/aws: Increase timeout for retrying creation of CW log subs (#14722)
3fe1cdadd9 Update CHANGELOG.md
9cb33d863d provider/aws: Increase timeout for deleting IGW (#14705)
6a953db728 Update CHANGELOG.md
e0b5f4f833 provider/openstack: dns zone v2 updates and docs
5792b9fe76 provider/openstack: Add openstack_dns_zone_v2 resource
986b9fcc53 vendor: Updating Gophercloud for OpenStack Provider
d2fe39cab3 Update CHANGELOG.md
4a671fc92e provider/aws: Retry IAM Role deletion on DeleteConflict (#14707)
752c38bdc8 Update CHANGELOG.md
3a41e45180 provider/aws: Retry ECS service update on InvalidParameterException (#14708)
030f26be48 Update CHANGELOG.md
6fe0471008 provider/openstack: Catch error during instance network parsing
792638d07b Update CHANGELOG.md
60bae99a94 provider/aws: Retry ElastiCache cluster deletion when it's snapshotting (#14700)
bb62bd3900 Update CHANGELOG.md
66ed50866d provider/aws: Increase timeout for creation of route_table (#14701)
d4f2a46fe8 Update CHANGELOG.md
c0a2aa3b49 provider/aws: Allow updating tuples in WAF XssMatchSet + no tuples (#14671)
20300b4359 Update CHANGELOG.md
6772360c2d Merge pull request #14688 from harijayms/manageddisk4TB
c243c51302 Update CHANGELOG.md
90b5d81933 Merge pull request #14685 from hashicorp/f-open-lightsail-regions
662373e12e Adding support for 4TB disks
6ab9d82cc5 wip: review changes:  - test arguments  - set region, project in state  - fix import error messages  - get rid of peerFound  - linkDiffSuppress
85895cecc7 provider/aws: rename usEast1Sess to r53Sess and document
05021c98d8 Update CHANGELOG.md
22a82c0dfb Merge pull request #14683 from ewbankkit/github-provider-handle-nil-response
0abfda4d8b provider/aws: Allow lightsail resources to work in other regions
7795904f78 Check for potentially nil response from GitHub API client.
5027cbd54c Update CHANGELOG.md
51620cf4fb Merge pull request #14679 from ewbankkit/import-aws_kms_key_alias
0e422737ba Fix and refactor the Chef provisioner
df4342bc3d Regenerate plugin list since provisioners were changed in previous commits
f5449a62e0 Various built-in provisioners improvements:
b279b1abb5 check for named s3 states before acquiring a lock
a2d452acec failing test to force-unlock a named state in s3
dffa575591 add docstring on ignored error
ca898d8d19 Add ability to 'terraform import' aws_kms_alias resources.
6266eef652 Update CHANGELOG.md
79903cd7ea provider/aws: Allow updating tuples in WAF SQLInjectionMatchSet + no tuples (#14667)
96e83817ef provider/aws: validation: Add validation function for IAM Policies
2065824729 Update CHANGELOG.md
65283fb47c provider/aws: Change AWS ssm_maintenance_window Read func (#14665)
11279963a3 Update CHANGELOG.md
783908ee25 core: fix bad Sprintf in backend migration message (#14601)
96532c4f11 Update CHANGELOG.md
a567cf00ce Merge pull request #14661 from hashicorp/b-aws-waf-size-constraint
cacaf91ff2 provider/aws: Increase timeout for retrying deletion IAM server cert (#14655)
ff06ffdf81 Merge pull request #14662 from hashicorp/f-travis-vet
7c6e19689f Merge pull request #14629 from pradeepbhadani/pow
76e99dcff4 update travis to catch vet failures
9b3e43016e Remove extra space
1a0c680a63 provider/azurerm: Add example of encrypting a running linux (#14642)
d9fb2cfd04 provider/azurerm: Add example of sql database (#14649)
d316205cf5 Remove extra line
bf99b53d17 provider/aws: Allow WAF SizeConstraint with no tuples
3fb671be1f provider/aws: Allow updating constraints in WAF SizeConstraintSet
ac25ac954c Update CHANGELOG.md
afe45b62df provider/aws: Allow updating tuples in WAF ByteMatchSet + no tuples (#14071)
2c94b46b14 provider/google: detach disks before deleting them.
fcdf494cff Merge pull request #14646 from hashicorp/f-update-route-table-docs-note
b38210c597 docs/aws: add note for aws_route_table resource
a47d0544a9 Update CHANGELOG.md
27927ddc2c provider/google: Add support for privateIpGoogleAccess on subnetworks (#14234)
208199a554 Update CHANGELOG.md
0e29b744df Mark the aws & gcs secrets as sensitive (#14634)
a8c2828b63 provider/google: Update docs to match new default value
025d7ea8c9 Update CHANGELOG.md
c3d2f6bbe4 Fix issue with GCP Cloud SQL Instance `disk_autoresize`  (#14582)
e7dcf95fa1 Merge pull request #14644 from hashicorp/paddy_gcp_remove_project_services_docs
aae44290cd merge master
adfa7aedfb Update news section with YAML data file (#14612)
cc505b2d61 Update CHANGELOG.md
740c92fc67 provider/aws: Support filtering in ASG data source (#14501)
04c62ae406 Merge pull request #14628 from jasonmcintosh/patch-1
c35d2325ef Update pow function description
eac7ade310 Fixed export to be master_username from username
0b2d02fc41 Update CHANGELOG.md
5e7035bf89 Merge pull request #14598 from pradeepbhadani/pow
faa480894f Add note in documentation for pow function
2c39887706 Add fail test - one parameter, non-numeric parameter
56fa4c7e0d Update CHANGELOG.md
62347ea833 provider/aws: Fall back to old tagging mechanism for AWS gov and aws China (#14627)
66b7a24b4f Update CHANGELOG.md
3f10116c6b Merge pull request #14563 from raphink/rancher_member
0c209e2b75 Update CHANGELOG.md
5e8306d02a Ensure schemas of `default_cache_behavior` and `cache_behavior` are same except `path_pattern` (#12628)
cf67a689db provider/aws: Randomize CloudFormation acceptance tests (#14623)
d0e5ee0a27 rancher_environment: member documentation details
87b502d5cf rancher_environment: fix typo
4bb16ad7f8 provider/aws: Fix the aws_codebuild_project acceptance tests (#14626)
506eaaa247 provider/aws: Raise timeout for attaching/detaching VPN GW (#14624)
9e4b62556a Merge pull request #14571 from hashicorp/b-handle-limit-exceeded
baa6859bfe provider/aws: bump sdk version
02cacceee4 provider/aws: Fix RDS DB snapshot data source acc test (#14610)
57489bb17f Update CHANGELOG.md
5884d518e7 [MS] Adding support for VMSS Data Disks using Managed Disk feature (#14608)
399af7710d Update CHANGELOG.md
71e5602d79 Fixes #14620 Handle migration of data when restoring db cluster from snapshot (#14622)
5efe3ad6b3 Update supported AWS regions (#14621)
622bc1aec2 Bumped github.com/ukcloud/govcloudair vendor version (#14616)
19d3355ca6 Update Example Usage (#14606)
f77ccc0520 provider/aws: Randomize SNS topic names in acceptance tests (#14618)
53c08092f6 Update CHANGELOG.md
1b532b519f provider/aws: Increase timeout for retrying creation of IAM server cert (#14609)
1392670a69 rancher_environment: initialize envClient only when members are set
4f521c74b0 rancher_environment: do not use a custom set function for members
51dd79fdf1 provider/google: remove deleted services field.
47b1aaea3a Add pow function
2a36e75b9e provider/aws: Tag VPCs created in our tests to help track down leaks (#14596)
25a71d9a56 Merge pull request #14593 from hashicorp/jbardin/dns-acc-tests
6254bb6387 don't rename imports except to avoid collisions
490ee8c17d convert dns tests with external deps tyo ACC tests
a565001014 provider/digitalocean: Add documentation for Certificate resource
8df29ccde6 Merge pull request #14580 from pradeepbhadani/master
c5b1eed7e5 Add mechanism for listing services in project_services docs (#14557)
b0ad1b9669 Archive provider docs (#14584)
b6c9b2dc7a Test members
2cc7431983 Update supported instance list
d75ff93165 rancher_environment: do not crash on empty members
8f5e5c47b9 Update preferred_backup_window description
8aac6c29ae Merge pull request #2 from hashicorp/master
f563515655 Update CHANGELOG.md
c56cccab48 Merge pull request #14570 from raphink/github_user
45ad54c816 provider/digitalocean: Add support for certificates
6681a86211 provider/digitalocean: Update godo for Certificates support
96a1622b03 github_user: add acceptance tests
228c8d0dae Update CHANGELOG.md
5833ffe0d1 Use username instead of Id in log
0c260d1341 providers/heroku: import heroku_pipeline_coupling resource (#14495)
f8b1d81ed8 Merge pull request #14572 from LinusU/patch-1
e0a4ad7f95 Fix typo in link to postgresql_extension
fc0d197be8 Add github_user data source
d05fc51aa0 provider/aws: Handle LimitExceededException for subscriber limits
a4cddf6ebf Update CHANGELOG.md
65d47774f2 provider/kubernetes: Add support for Service (#14554)
cebe0c9967 Update CHANGELOG.md
da2659b8e9 Merge pull request #11710 from ewbankkit/aws_default_vpc-resource
492618f8cf Update CHANGELOG.md
a53c8825a8 Merge pull request #14463 from ewbankkit/issue-5653
bd468170e4 [MS] Note ForceNew in VMSS docs where missing (#14560)
01e9011231 rancher_environment: member doc
03cabb7b7e rancher_environment: add member support
2ed7297fa3 Add 'aws_default_vpc' resource.
d2eaa6f8e0 provider/google: Google Cloud content-based load balancing example. (#14448)
2fbfdd4ab6 Update CHANGELOG.md
8b7f17c039 provider/aws: Change of aws_subnet ipv6 causing update failure (#14545)
e2a37c1a51 Merge pull request #14544 from hashicorp/b-opc-ip-reservation-default
40372d443f Merge pull request #14551 from hashicorp/f-add-opc-docs-back
9d79fdd789 Merge branch 'master' into master
9892816336 …
@Nareshkg
Copy link

Nareshkg commented Jun 9, 2019

Is this issue fixed? I have noticed the same error while destroying the oracle rds instance. the timeout was set for 4hrs for create/delete/update however the rds instance deletion timed out at 2hrs time..

@ghost
Copy link

ghost commented Jul 25, 2019

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@ghost ghost locked and limited conversation to collaborators Jul 25, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

5 participants