From 4d0c89fbd33e5b0aca085fc88dda009590432846 Mon Sep 17 00:00:00 2001 From: Srevin Saju Date: Tue, 31 Oct 2023 17:22:22 +0300 Subject: [PATCH] docs: Use .response_body instead of .body for data.http .body attribute is deprecated on the http data provider https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce04d5c..524325a 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ data "google_service_account_id_token" "oidc" { target_service_account = google_service_account.example.email delegates = [] include_email = true - target_audience = regex("[A-Za-z0-9-]*\\.apps\\.googleusercontent\\.com", data.http.client_id.body) + target_audience = regex("[A-Za-z0-9-]*\\.apps\\.googleusercontent\\.com", data.http.client_id.response_body) } provider "airflow" {