This file contains 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
from contextlib import contextmanager | |
import threading | |
class _Local(threading.local): | |
def __init__(self): | |
self.ctxt = {} | |
_data = _Local() | |
@contextmanager |
This file contains 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
2019/04/01 22:41:49 [INFO] Terraform version: 0.11.13 | |
2019/04/01 22:41:49 [INFO] Go runtime version: go1.11.5 | |
2019/04/01 22:41:49 [INFO] CLI args: []string{"/usr/local/bin/terraform", "apply"} | |
2019/04/01 22:41:49 [DEBUG] Attempting to open CLI config file: /Users/sbutler/.terraformrc | |
2019/04/01 22:41:49 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2019/04/01 22:41:49 [INFO] CLI command args: []string{"apply"} | |
2019/04/01 22:41:49 [INFO] command: empty backend config, returning nil | |
2019/04/01 22:41:49 [DEBUG] command: no data state file found for backend config | |
2019/04/01 22:41:49 [DEBUG] New state was assigned lineage "25dc2857-a584-3a09-78e8-1dc7a74ec158" | |
2019/04/01 22:41:49 [INFO] command: backend initialized: <nil> |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
``` | |
Copyright (c) 2022 University of Illinois Board of Trustees | |
All rights reserved. | |
Developed by: Technology Services | |
University of Illinois at Urbana-Champaign | |
https://techservices.illinois.edu/ | |
``` |