From 4d21c7f97ae7b8a7a20f6916d01fda3e81972d69 Mon Sep 17 00:00:00 2001 From: Benjamin Simon Date: Tue, 16 Dec 2025 14:19:08 +0100 Subject: [PATCH] remove `skip_requesting_account_id` from TF files following S3 changes --- .../aws/integrations/app-frameworks/spring-cloud-function.mdx | 1 - .../aws/integrations/infrastructure-as-code/crossplane.md | 1 - .../aws/integrations/infrastructure-as-code/terraform.mdx | 4 ---- src/content/docs/aws/tooling/lambda-tools/hot-reloading.mdx | 1 - .../docs/aws/tutorials/s3-static-website-terraform.mdx | 1 - 5 files changed, 8 deletions(-) diff --git a/src/content/docs/aws/integrations/app-frameworks/spring-cloud-function.mdx b/src/content/docs/aws/integrations/app-frameworks/spring-cloud-function.mdx index 52cbb6c8..da0e4ce7 100644 --- a/src/content/docs/aws/integrations/app-frameworks/spring-cloud-function.mdx +++ b/src/content/docs/aws/integrations/app-frameworks/spring-cloud-function.mdx @@ -727,7 +727,6 @@ provider "aws" { s3_force_path_style = true skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true endpoints { apigateway = var.STAGE == "local" ? "http://localhost:4566" : null diff --git a/src/content/docs/aws/integrations/infrastructure-as-code/crossplane.md b/src/content/docs/aws/integrations/infrastructure-as-code/crossplane.md index 5c4f5563..3a467772 100644 --- a/src/content/docs/aws/integrations/infrastructure-as-code/crossplane.md +++ b/src/content/docs/aws/integrations/infrastructure-as-code/crossplane.md @@ -138,7 +138,6 @@ TODO: add more services to this list, as needed static: http://host.docker.internal:4566 skip_credentials_validation: true skip_metadata_api_check: true - skip_requesting_account_id: true s3_use_path_style: true EOF ``` diff --git a/src/content/docs/aws/integrations/infrastructure-as-code/terraform.mdx b/src/content/docs/aws/integrations/infrastructure-as-code/terraform.mdx index 58638ece..b0622423 100644 --- a/src/content/docs/aws/integrations/infrastructure-as-code/terraform.mdx +++ b/src/content/docs/aws/integrations/infrastructure-as-code/terraform.mdx @@ -134,7 +134,6 @@ provider "aws" { s3_use_path_style = true skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true } ``` @@ -169,7 +168,6 @@ provider "aws" { s3_use_path_style = true skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true endpoints { s3 = "http://s3.localhost.localstack.cloud:4566" @@ -195,7 +193,6 @@ provider "aws" { s3_use_path_style = false skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true endpoints { apigateway = "http://localhost:4566" @@ -276,7 +273,6 @@ provider "aws" { s3_use_path_style = false skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true endpoints { apigateway = "http://localhost:4566" diff --git a/src/content/docs/aws/tooling/lambda-tools/hot-reloading.mdx b/src/content/docs/aws/tooling/lambda-tools/hot-reloading.mdx index 3a060480..79e8fe79 100644 --- a/src/content/docs/aws/tooling/lambda-tools/hot-reloading.mdx +++ b/src/content/docs/aws/tooling/lambda-tools/hot-reloading.mdx @@ -566,7 +566,6 @@ provider "aws" { s3_force_path_style = true skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true endpoints { apigateway = var.STAGE == "local" ? "http://localhost:4566" : null diff --git a/src/content/docs/aws/tutorials/s3-static-website-terraform.mdx b/src/content/docs/aws/tutorials/s3-static-website-terraform.mdx index 9ad33a65..27d59827 100644 --- a/src/content/docs/aws/tutorials/s3-static-website-terraform.mdx +++ b/src/content/docs/aws/tutorials/s3-static-website-terraform.mdx @@ -183,7 +183,6 @@ provider "aws" { s3_use_path_style = false skip_credentials_validation = true skip_metadata_api_check = true - skip_requesting_account_id = true endpoints { s3 = "http://s3.localhost.localstack.cloud:4566"