Skip to content

Commit

Permalink
Solution0.91
Browse files Browse the repository at this point in the history
  • Loading branch information
Serveladik committed Sep 18, 2024
1 parent f02d111 commit 3802654
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions install-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ sudo apt-get update -yq
sudo apt-get install python3-pip -yq

# Create a directory for the app and download the files.
mkdir /app
sudo mkdir /app
# make sure to uncomment the line bellow and update the link with your GitHub username
# git clone https://github.com/<your-gh-username>/azure_task_12_deploy_app_with_vm_extention.git
sudo cp -r devops_todolist_terraform_task/app/* /app
sudo cp -r ./app/* /app

# create a service for the app via systemctl and start the app
sudo mv /app/todoapp.service /etc/systemd/system/
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ variable "ssh_key" {

variable "blob_url" {
type = string
default = "https://raw.githubusercontent.com/mate-academy/devops_todolist_terraform_task/main/install-app.sh"
default = "https://raw.githubusercontent.com/Serveladik/devops_todolist_terraform_task/main/install-app.sh"
}

variable "storage_account_name" {
Expand All @@ -80,5 +80,5 @@ variable "storage_container_name" {

variable "source_file_path" {
type = string
default = "https://raw.githubusercontent.com/mate-academy/devops_todolist_terraform_task/main/install-app.sh"
default = "https://raw.githubusercontent.com/Serveladik/devops_todolist_terraform_task/main/install-app.sh"
}

0 comments on commit 3802654

Please sign in to comment.