File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 2.1.1] - 2021-01-13
8
+
9
+ - bug fix missing project field for google_project_service resource
10
+
7
11
## [ 2.1.0] - 2021-01-13
8
12
9
13
- Add Terraform 0.13 compatibility
@@ -19,7 +23,8 @@ All notable changes to this project will be documented in this file.
19
23
20
24
- Initial release
21
25
22
- [ Unreleased ] : https://github.com/nephosolutions/terraform-google-gcp-project/compare/v2.1.0...HEAD
26
+ [ Unreleased ] : https://github.com/nephosolutions/terraform-google-gcp-project/compare/v2.1.1...HEAD
27
+ [ 2.1.1 ] : https://github.com/nephosolutions/terraform-google-gcp-project/compare/v2.1.0...v2.1.1
23
28
[ 2.1.0 ] : https://github.com/nephosolutions/terraform-google-gcp-project/compare/v2.0.0...v2.1.0
24
29
[ 2.0.0 ] : https://github.com/nephosolutions/terraform-google-gcp-project/compare/v1.0.0...v2.0.0
25
30
[ 1.0.0 ] : https://github.com/nephosolutions/terraform-google-gcp-project/releases/tag/v1.0.0
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ This Terraform module integrates a Google Cloud Platform project into Datadog
7
7
``` hcl
8
8
module "datadog_integration" {
9
9
source = "nephosolutions/datadog-integration/google"
10
- version = "2.1.0 "
10
+ version = "2.1.1 "
11
11
12
12
project_id = "..."
13
13
}
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ resource "google_project_service" "required" {
39
39
for_each = toset (local. project_services )
40
40
41
41
disable_on_destroy = false
42
+ project = local. project_id
42
43
service = each. key
43
44
}
44
45
You can’t perform that action at this time.
0 commit comments