https://github.com/perfectthymetech/timeseries-data-explorer
https://github.com/perfectthymetech/timeseries-data-explorer
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/perfectthymetech/timeseries-data-explorer
- Owner: PerfectThymeTech
- Created: 2024-04-23T08:22:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-12T10:51:07.000Z (6 months ago)
- Last Synced: 2025-01-16T09:54:17.792Z (5 months ago)
- Language: HCL
- Homepage:
- Size: 383 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Timeseries Data Explorer
## Instructions for deployment
### Prerequisites
Install the following tools on your device:
- Azure CLI
- Azure Subscription
- Terraform### Azure CLI configuration
Configure Azure CLI on your device by runnin the follwing commands:
```sh
# Login to Azure
az login# Set azure account
az account set --subscription ""# Configure CLI
az config set extension.use_dynamic_install=yes_without_prompt
```### Update Variables
Open the [`code\infra\vars.tfvars`](code\infra\vars.tfvars) file and update the prefix and location parameters:
```hcl
location = ""
environment = "dev"
prefix = ""
tags = {}
...
```### Terraform deployment (local backend)
Deploy the Terraform configuration using the following commands:
```sh
# Move terraform_override.tf file
move .\utilities\terraformConfigSamples\* .\code\infra\# Change directory
cd .\code\infra\# Terraform init
terraform init# Terraform plan
terraform plan -var-file="vars.tfvars"# Terraform apply
terraform apply -var-file="vars.tfvars"
```You successfully deployed the setup!