mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 13:04:04 -08:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
---
|
|
id: aws
|
|
title: AWS Context
|
|
sidebar_label: AWS
|
|
---
|
|
|
|
## What
|
|
|
|
Display the currently active AWS profile and region.
|
|
|
|
## Sample Configuration
|
|
|
|
import Config from '@site/src/components/Config.js';
|
|
|
|
<Config data={{
|
|
"type": "aws",
|
|
"style": "powerline",
|
|
"powerline_symbol": "\uE0B0",
|
|
"foreground": "#ffffff",
|
|
"background": "#FFA400",
|
|
"template": " \uE7AD {{.Profile}}{{if .Region}}@{{.Region}}{{end}}"
|
|
}}/>
|
|
|
|
## Properties
|
|
|
|
| Name | Type | Description |
|
|
| ----------------- | ------------------------------------------------------------------------------ | ----------- |
|
|
| `display_default` | `boolean` - display the segment or not when the user profile matches `default` | defaults |
|
|
|
|
to `true`
|
|
|
|
## Template ([info][templates])
|
|
|
|
:::note default template
|
|
|
|
```template
|
|
{{ .Profile }}{{ if .Region }}@{{ .Region }}{{ end }}
|
|
```
|
|
|
|
:::
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Description |
|
|
| ---------- | -------- | ---------------------------- |
|
|
| `.Profile` | `string` | the currently active profile |
|
|
| `.Region` | `string` | the currently active region |
|
|
|
|
[templates]: /docs/configuration/templates
|