From 8c5bde2a3856fbd844572f61f3587de1c53f957c Mon Sep 17 00:00:00 2001 From: Artem Date: Mon, 10 Feb 2025 16:31:15 +0000 Subject: [PATCH] add "-input=false" (#440) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 38faa05..aca42e9 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ steps: - name: Terraform Init id: init - run: terraform init + run: terraform init -input=false - name: Terraform Validate id: validate @@ -108,7 +108,7 @@ steps: - name: Terraform Plan id: plan - run: terraform plan -no-color + run: terraform plan -no-color -input=false continue-on-error: true - uses: actions/github-script@v7 @@ -168,7 +168,7 @@ steps: - name: Terraform Init id: init - run: terraform init + run: terraform init -input=false - name: Terraform Validate id: validate @@ -176,7 +176,7 @@ steps: - name: Terraform Plan id: plan - run: terraform plan -no-color + run: terraform plan -no-color -input=false continue-on-error: true - uses: actions/github-script@v7