Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View tfenster's full-sized avatar
🏠
Working from home

Tobias Fenster tfenster

🏠
Working from home
View GitHub Profile
@tfenster
tfenster / terraform azure provider crash log
Created November 14, 2020 00:31
terraform azure provider crash log
This file has been truncated, but you can view the full file.
2020/11/14 01:27:05 [INFO] Terraform version: 0.13.5
2020/11/14 01:27:05 [INFO] Go runtime version: go1.14.7
2020/11/14 01:27:05 [INFO] CLI args: []string{"C:\\ProgramData\\chocolatey\\lib\\terraform\\tools\\terraform.exe", "import", "azurerm_monitor_scheduled_query_rules_alert.disk", "/subscriptions/94670b10-08d0-4d17-bcfe-e01f701be9ff/resourceGroups/devtfe/providers/Microsoft.Insights/scheduledQueryRules/disk"}
2020/11/14 01:27:05 [DEBUG] Attempting to open CLI config file: C:\Users\tfenster8982\AppData\Roaming\terraform.rc
2020/11/14 01:27:05 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/11/14 01:27:05 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2020/11/14 01:27:05 [DEBUG] ignoring non-existing provider search directory C:\Users\tfenster8982\AppData\Roaming\terraform.d\plugins
2020/11/14 01:27:05 [DEBUG] ignoring non-existing provider search directory C:\Users\tfenster8982\AppData\Roaming\HashiCorp\Terraform\plugins
2020/11/14 01:27:05 [INFO] CLI command
@tfenster
tfenster / fork forced sync
Last active April 15, 2023 05:49 — forked from glennblock/fork forced sync
Force your forked repo to be the same as upstream. Forces master changes into fork and throws away all changes!
if no upstream remote created: git remote add upstream https://[upstream guy's repo url]
git fetch upstream
git reset --hard upstream/master
git push origin master --force