Skip to content

Commit

Permalink
Sonar upgrade POC - Updated example's main file
Browse files Browse the repository at this point in the history
  • Loading branch information
lindanasredin committed Aug 15, 2023
1 parent 0ae8719 commit 3e7d792
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions examples/upgrade/main.tf
Original file line number Diff line number Diff line change
@@ -1,48 +1,46 @@


module "sonar_upgrader"{
source = "./modules/sonar_upgrader_python"
agentless_gws = [
{
"ip" = "10.0.1.231"
"ip" = "10.0.1.1"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
"proxy" = {
"ip" = "52.8.79.39"
"ip" = "52.8.8.8"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
}
},
{
"ip" = "10.0.1.223"
"ip" = "10.0.1.2"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
"proxy" = {
"ip" = "52.8.79.39"
"ip" = "52.8.8.8"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
}
},
{
"ip" = "10.0.1.109"
"ip" = "10.0.1.3"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
"proxy" = {
"ip" = "52.8.79.39"
"ip" = "52.8.8.8"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
}
}
]
dsf_hubs = [
{
"ip" = "52.8.79.39"
"ip" = "52.8.8.8"
"ssh_user" = "ec2-user"
"ssh_private_key_file_path" = "/Users/linda.nasredin/cnc_workspace/dsfkit/examples/poc/sonar_basic_deployment/ssh_keys/dsf_ssh_key-default"
"ssh_private_key_file_path" = "/home/ssh_key2.pem"
}
]

target_version = "4.13.0.10.0-rc5"
target_version = "4.12.0.10.0"
# options
run_preflight_validations = true
run_postflight_validations = true
Expand Down

0 comments on commit 3e7d792

Please sign in to comment.