Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
build(deps): bump hashicorp/http from 2.1.0 to 2.2.0 in /terraform (#…
Browse files Browse the repository at this point in the history
…1724)

* build(deps): bump hashicorp/http from 2.1.0 to 2.2.0 in /terraform

Bumps [hashicorp/http](https://github.com/hashicorp/terraform-provider-http) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/hashicorp/terraform-provider-http/releases)
- [Changelog](https://github.com/hashicorp/terraform-provider-http/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-provider-http@v2.1.0...v2.2.0)

---
updated-dependencies:
- dependency-name: hashicorp/http
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Replace uses of deprecated "body" attribute

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Cook <dcook@letsencrypt.org>
  • Loading branch information
dependabot[bot] and divergentdave authored Jun 13, 2022
1 parent 5dc35fc commit 469e9d0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
29 changes: 15 additions & 14 deletions terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ terraform {
}
http = {
source = "hashicorp/http"
version = "2.1.0"
version = "2.2.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ data "http" "peer_share_processor_global_manifest" {
locals {
ingestor_global_manifest_exists = data.external.global_manifest_http_status.result.http_code == "200"
ingestor_server_identity = local.ingestor_global_manifest_exists ? (
jsondecode(data.http.ingestor_global_manifest[0].body).server-identity
jsondecode(data.http.ingestor_global_manifest[0].response_body).server-identity
) : (
jsondecode(data.http.ingestor_specific_manifest[0].body).server-identity
jsondecode(data.http.ingestor_specific_manifest[0].response_body).server-identity
)
ingestor_gcp_service_account_id = lookup(local.ingestor_server_identity, "gcp-service-account-id", "")
ingestor_aws_role_arn = lookup(local.ingestor_server_identity, "aws-iam-entity", "")
Expand All @@ -204,7 +204,7 @@ locals {

resource_prefix = "prio-${var.environment}-${var.data_share_processor_name}"

peer_share_processor_server_identity = jsondecode(data.http.peer_share_processor_global_manifest.body).server-identity
peer_share_processor_server_identity = jsondecode(data.http.peer_share_processor_global_manifest.response_body).server-identity
peer_share_processor_gcp_service_account_email = local.peer_share_processor_server_identity.gcp-service-account-email
peer_share_processor_gcp_service_account_unique_id = lookup(local.peer_share_processor_server_identity, "gcp-service-account-id", "")

Expand Down

0 comments on commit 469e9d0

Please sign in to comment.