Skip to content

Instantly share code, notes, and snippets.

View Wolfteam's full-sized avatar
😮
Are you there ?

Efrain Bastidas Wolfteam

😮
Are you there ?
View GitHub Profile
2025-02-13T19:29:11.405-0500 [INFO] Terraform version: 1.10.4
2025-02-13T19:29:11.405-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.70.0
2025-02-13T19:29:11.405-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.0
2025-02-13T19:29:11.405-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2025-02-13T19:29:11.405-0500 [DEBUG] using github.com/zclconf/go-cty v1.16.0
2025-02-13T19:29:11.405-0500 [INFO] Go runtime version: go1.23.3
2025-02-13T19:29:11.405-0500 [INFO] CLI args: []string{"terraform", "plan"}
2025-02-13T19:29:11.405-0500 [DEBUG] Attempting to open CLI config file: /Users/ebastidas/.terraformrc
2025-02-13T19:29:11.405-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2025-02-13T19:29:11.406-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
@Wolfteam
Wolfteam / MonitorEndpoints.ps1
Created November 22, 2017 12:22 — forked from stefanprodan/MonitorEndpoints.ps1
Calling ASP.NET Web API endpoints at regular intervals can be easily done using Windows Task Scheduler and PowerShell’s Invoke-RestMethod. The following script makes a GET call for each supplied endpoint, if a call fails then the endpoint’s URL and the error details are sent to Windows Application Event Log.
#############################################
##
## Monitor ASP.NET WebAPI Enpoints
## Author: Stefan Prodan
## Date : 7 Apr 2014
## Company: VeriTech.io
#############################################
#Base url
$urlPrefix = "http://localhost/MyApp.Server/";