changing URL of http datasource acceptance test to avoid getting rate limited.

This commit is contained in:
karthik P 2025-09-19 17:16:54 +05:30
parent 847497f8f3
commit 3e4e380c82
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ func TestHttpDataSource(t *testing.T) {
Path: testDatasourceBasic,
Error: false,
ExpectedOutputs: map[string]string{
"url": "url is https://www.packer.io/",
"url": "url is https://www.google.com",
// Check that body is not empty
"body": "body is true",
},

View file

@ -3,7 +3,7 @@ source "null" "example" {
}
data "http" "basic" {
url = "https://www.packer.io/"
url = "https://www.google.com"
}
locals {