Skip to content

Commit aec00d6

Browse files
committed
hotfix/no-aws-ami
1 parent 85402c7 commit aec00d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iterative/resource_runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ func provisionerCode(d *schema.ResourceData) (string, error) {
433433
data["AZURE_TENANT_ID"] = os.Getenv("AZURE_TENANT_ID")
434434
data["GOOGLE_APPLICATION_CREDENTIALS_DATA"] = os.Getenv("GOOGLE_APPLICATION_CREDENTIALS_DATA")
435435
data["KUBERNETES_CONFIGURATION"] = os.Getenv("KUBERNETES_CONFIGURATION")
436-
data["ami"] = isAMIAvailable(d.Get("cloud").(string), d.Get("region").(string))
436+
data["ami"] = false //isAMIAvailable(d.Get("cloud").(string), d.Get("region").(string))
437437
data["container"] = isContainerAvailable(d.Get("cloud").(string))
438438
script, err := base64.StdEncoding.DecodeString(d.Get("startup_script").(string))
439439
if err != nil {

0 commit comments

Comments
 (0)