-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed Set IP in AWS Security Group in sonar_single_account_cli.yml
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,10 +209,10 @@ jobs: | |
key: ${{ env.JUMP_SERVER_KEY }} | ||
port: 22 | ||
command_timeout: "2h" | ||
envs: REMOTE_EXAMPLE_DIR,TF_WORKSPACE | ||
envs: REMOTE_EXAMPLE_DIR,TF_WORKSPACE, TF_VAR_additional_tags | ||
script: | | ||
printenv | ||
terraform -chdir=$REMOTE_EXAMPLE_DIR -var additional_tags='${{ env.TF_VAR_additional_tags }}' plan | ||
terraform -chdir=$REMOTE_EXAMPLE_DIR plan | ||
- name: Terraform Apply | ||
uses: appleboy/[email protected] | ||
|
@@ -222,8 +222,8 @@ jobs: | |
key: ${{ env.JUMP_SERVER_KEY }} | ||
port: 22 | ||
command_timeout: "2h" | ||
envs: REMOTE_EXAMPLE_DIR,TF_WORKSPACE | ||
script: terraform -chdir=$REMOTE_EXAMPLE_DIR apply -var additional_tags='${{env.TF_VAR_additional_tags }}''-auto-approve | ||
envs: REMOTE_EXAMPLE_DIR,TF_WORKSPACE, TF_VAR_additional_tags | ||
script: terraform -chdir=$REMOTE_EXAMPLE_DIR apply -auto-approve | ||
|
||
- name: Terraform Output | ||
if: always() | ||
|