Function
get_cloud_hostname
(
c: Composition,
app_password: str,
region: str = "aws/us-east-1",
environment: str = "production",
quiet: bool = False,
)
Source from the content-addressed store, hash-verified
| 14 | |
| 15 | |
| 16 | def get_cloud_hostname( |
| 17 | c: Composition, |
| 18 | app_password: str, |
| 19 | region: str = "aws/us-east-1", |
| 20 | environment: str = "production", |
| 21 | quiet: bool = False, |
| 22 | ) -> str: |
| 23 | with c.override( |
| 24 | Mz(region=region, environment=environment, app_password=app_password) |
| 25 | ): |
| 26 | return c.cloud_hostname(quiet=quiet) |