Skip to content

Commit e744e33

Browse files
committed
bug fix missing project field for google_project_service resource
1 parent 24dd4b1 commit e744e33

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [2.1.1] - 2021-01-13
8+
9+
- bug fix missing project field for google_project_service resource
10+
711
## [2.1.0] - 2021-01-13
812

913
- Add Terraform 0.13 compatibility
@@ -19,7 +23,8 @@ All notable changes to this project will be documented in this file.
1923

2024
- Initial release
2125

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
2328
[2.1.0]: https://github.com/nephosolutions/terraform-google-gcp-project/compare/v2.0.0...v2.1.0
2429
[2.0.0]: https://github.com/nephosolutions/terraform-google-gcp-project/compare/v1.0.0...v2.0.0
2530
[1.0.0]: https://github.com/nephosolutions/terraform-google-gcp-project/releases/tag/v1.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This Terraform module integrates a Google Cloud Platform project into Datadog
77
```hcl
88
module "datadog_integration" {
99
source = "nephosolutions/datadog-integration/google"
10-
version = "2.1.0"
10+
version = "2.1.1"
1111
1212
project_id = "..."
1313
}

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ resource "google_project_service" "required" {
3939
for_each = toset(local.project_services)
4040

4141
disable_on_destroy = false
42+
project = local.project_id
4243
service = each.key
4344
}
4445

0 commit comments

Comments
 (0)