Skip to content

Commit bd6a5d6

Browse files
committed
fix: add explicit dummy credentials for offline CI planning
1 parent f63338b commit bd6a5d6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

main.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ terraform {
99

1010
provider "aws" {
1111
region = "us-east-1"
12-
# No active cloud keys required for offline planning
12+
13+
# 💡 Explicit dummy keys to force offline planning in blank CI environments
14+
access_key = "mock_access_key"
15+
secret_key = "mock_secret_key"
16+
1317
skip_credentials_validation = true
1418
skip_requesting_account_id = true
1519
skip_metadata_api_check = true

0 commit comments

Comments
 (0)