Skip to content

Commit 13bf320

Browse files
authored
Merge pull request #46 from terraform-google-modules/ludo-fix-cos-mysql
Fix regression in cos-mysql `kms_data` variable introduced in #31
2 parents 3fb0973 + cf66efc commit 13bf320

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ Extending the adopted spec, each change should have a link to its corresponding
88

99
## [Unreleased]
1010

11+
## [1.0.3] - 2019-10-12
12+
13+
### Fixed
14+
15+
- Fix regression in cos-mysql `kms_data` variable introduced in [#31]. [#46]
16+
1117
## [1.0.2] - 2019-10-11
1218

1319
### Fixed
@@ -56,13 +62,15 @@ Extending the adopted spec, each change should have a link to its corresponding
5662
- This is the initial release of the Container VM module.
5763

5864
[Unreleased]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v1.0.2...HEAD
65+
[1.0.3]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v1.0.2...v1.0.3
5966
[1.0.2]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v1.0.1...v1.0.2
6067
[1.0.1]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v1.0.0...v1.0.1
6168
[1.0.0]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v0.3.0...v1.0.0
6269
[0.3.0]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v0.2.0...v0.3.0
6370
[0.2.0]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v0.1.1...v0.2.0
6471
[0.1.1]: https://github.com/terraform-google-modules/terraform-google-container-vm/compare/v0.1.0...v0.1.1
6572

73+
[#46]: https://github.com/terraform-google-modules/terraform-google-container-vm/pull/46
6674
[#41]: https://github.com/terraform-google-modules/terraform-google-container-vm/pull/41
6775
[#39]: https://github.com/terraform-google-modules/terraform-google-container-vm/pull/39
6876
[#31]: https://github.com/terraform-google-modules/terraform-google-container-vm/pull/31

modules/cos-mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module "mysql" {
5656
| host\_project\_id | VPC host project id if the instance is in a service project. | string | `""` | no |
5757
| instance\_count | Number of instances to create. | number | `"1"` | no |
5858
| instance\_type | Instance machine type. | string | `"n1-standard-2"` | no |
59-
| kms\_data | Map with KMS project_id, keyring, location and key if password is encrypted with KMS. | object | `"null"` | no |
59+
| kms\_data | Map with KMS project_id, keyring, location and key if password is encrypted with KMS. | map(string) | `<map>` | no |
6060
| labels | Labels to be attached to the resources | map(string) | `<map>` | no |
6161
| log\_driver | Docker log driver to use for CoreDNS. | string | `"gcplogs"` | no |
6262
| my\_cnf | Content of the my.cnf file that will be written on the instances. | string | `""` | no |

modules/cos-mysql/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ variable "my_cnf" {
109109

110110
variable "kms_data" {
111111
description = "Map with KMS project_id, keyring, location and key if password is encrypted with KMS."
112-
type = object({ key = string, keyring = string, location = string })
112+
type = map(string)
113113
default = null
114114
}
115115

0 commit comments

Comments
 (0)