https://github.com/mildronize/vscode-day-2023-typescript-with-github-copilot
VS Code Day 2023 TypeScript with Github Copilot
https://github.com/mildronize/vscode-day-2023-typescript-with-github-copilot
Last synced: 4 months ago
JSON representation
VS Code Day 2023 TypeScript with Github Copilot
- Host: GitHub
- URL: https://github.com/mildronize/vscode-day-2023-typescript-with-github-copilot
- Owner: mildronize
- Created: 2023-05-05T07:32:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-06T09:24:35.000Z (about 3 years ago)
- Last Synced: 2025-06-09T20:37:51.597Z (about 1 year ago)
- Language: HCL
- Homepage: https://docs.google.com/presentation/d/1NTcnnatGU3C32JE-nRVZdEQ8IDODN5I-ILl3GnDxsoM/edit?usp=sharing
- Size: 50.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```bash
terraform init
# Create dev env
terraform plan -var 'environment=dev' -out=tfplan -no-color > tfplan.txt
terraform apply "tfplan"
# Create uat env
terraform plan -var 'environment=uat' -out=tfplan -no-color > tfplan.txt
terraform apply "tfplan"
```bash
# Create Service Principal
az ad sp create-for-rbac --name "vscode-thai-2023" --role contributor --scopes [RESOURCE_ID]
```