Skip to content

Instantly share code, notes, and snippets.

View iamolegga's full-sized avatar
🏝️
σιγά σιγά

iamolegga

🏝️
σιγά σιγά
  • Λεμεσός, Κύπρος
  • 05:52 (UTC +02:00)
View GitHub Profile
> TF_LOG=DEBUG terraform apply
2022-01-14T00:23:31.542+0300 [INFO] Terraform version: 1.1.3
2022-01-14T00:23:31.542+0300 [INFO] Go runtime version: go1.17.2
2022-01-14T00:23:31.542+0300 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/2.2.2/versions/1.1.3/terraform", "apply"}
2022-01-14T00:23:31.542+0300 [DEBUG] Attempting to open CLI config file: /Users/XXXXXX/.terraformrc
2022-01-14T00:23:31.542+0300 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2022-01-14T00:23:31.543+0300 [INFO] Loading CLI configuration from /Users/XXXXXX/.terraform.d/credentials.tfrc.json
2022-01-14T00:23:31.543+0300 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2022-01-14T00:23:31.543+0300 [DEBUG] ignoring non-existing provider search directory /Users/XXXXXX/.terraform.d/plugins
2022-01-14T00:23:31.543+0300 [DEBUG] ignoring non-existing provider search directory /Users/XXXXXX/Library/Application Support/io.terraform/plugins
@iamolegga
iamolegga / list.txt
Created December 23, 2021 20:36 — forked from coryodaniel/list.txt
GCP List of API Services
NAME TITLE
abusiveexperiencereport.googleapis.com Abusive Experience Report API
acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API
accessapproval.googleapis.com Access Approval API
accesscontextmanager.googleapis.com Access Context Manager API
actions.googleapis.com Actions API
adexchangebuyer-json.googleapis.com Ad Exchange Buyer API
adexchangebuyer.googleapis.com Ad Exchange Buyer API II
adexchangeseller.googleapis.com Ad Exchange Seller API
adexperiencereport.googleapis.com Ad Experience Report API
@iamolegga
iamolegga / argsToDictionary.m
Created April 22, 2020 11:33
argsToDictionary.m
- (NSDictionary*)argsToDictionary{
NSArray *processArgs = [[NSProcessInfo processInfo] arguments];
NSMutableArray *arguments = [[NSMutableArray alloc]initWithArray: processArgs];
// remove entrypoint
[arguments removeObjectAtIndex:0];
NSMutableDictionary *argsdict = [NSMutableDictionary dictionary];