https://github.com/perfectthymetech/timeseries-data-explorer
https://github.com/perfectthymetech/timeseries-data-explorer
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/perfectthymetech/timeseries-data-explorer
- Owner: PerfectThymeTech
- Created: 2024-04-23T08:22:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-02T10:16:34.000Z (over 1 year ago)
- Last Synced: 2025-03-05T23:21:52.283Z (over 1 year ago)
- Language: HCL
- Homepage:
- Size: 385 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
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!