This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (NSDictionary*)argsToDictionary{ | |
| NSArray *processArgs = [[NSProcessInfo processInfo] arguments]; | |
| NSMutableArray *arguments = [[NSMutableArray alloc]initWithArray: processArgs]; | |
| // remove entrypoint | |
| [arguments removeObjectAtIndex:0]; | |
| NSMutableDictionary *argsdict = [NSMutableDictionary dictionary]; |