def apply(d: dict, v: str) -> dict: set_path = dictionary_deep_set(["org_name"]) set_path(d, v) return d
def apply(d: dict, v: str) -> dict: set_path = dictionary_deep_set(["providers", "aws", "account_id"]) set_path(d, v) return d
def apply(d: dict, v: str) -> dict: set_path = dictionary_deep_set(["providers", "azurerm", "location"]) set_path(d, v) return d
def apply(d: dict, v: str) -> dict: set_path = dictionary_deep_set(["providers", "google", "region"]) set_path(d, v) return d
def apply(d: dict, v: str) -> dict: set_path = dictionary_deep_set(["providers", "azurerm", "subscription_id"]) set_path(d, v) return d