Note
Useful information that users should know, even when skimming content.
Tip
Helpful advice for doing things better or more easily.
Important
Key information users need to know to achieve their goal.
[!WARNING]
# vim:fileencoding=utf-8:foldmethod=marker | |
#: Fonts {{{ | |
#: kitty has very powerful font management. You can configure | |
#: individual font faces and even specify special fonts for particular | |
#: characters. | |
# font_family monospace | |
# bold_font auto |
# Generated by Powerlevel10k configuration wizard on 2024-02-15 at 13:46 CET. | |
# Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh, checksum 4117. | |
# Wizard options: nerdfont-v3 + powerline, small icons, rainbow, unicode, 24h time, | |
# round separators, round heads, flat tails, 2 lines, solid, full frame, | |
# lightest-ornaments, sparse, many icons, concise, instant_prompt=verbose. | |
# Type `p10k configure` to generate another config. | |
# | |
# Config for Powerlevel10k with powerline prompt style with colorful background. | |
# Type `p10k configure` to generate your own config based on it. | |
# |
Note
Useful information that users should know, even when skimming content.
Tip
Helpful advice for doing things better or more easily.
Important
Key information users need to know to achieve their goal.
[!WARNING]
// Security group | |
resource "aws_security_group" "alb" { | |
name = "${local.environment}-alb-public" | |
description = "Used by the public internet-facing load balancer" | |
vpc_id = module.data_networking.vpc_id | |
tags = local.common_tags | |
} | |
// |
var stackStatusValues []StackStatus | |
type StackStatus string | |
//goland:noinspection GoUnusedGlobalVariable | |
var ( | |
StackStatusDeleteInProgress = newStackStatus("DELETE_IN_PROGRESS") | |
StackStatusCreateComplete = newStackStatus("CREATE_COMPLETE") | |
StackStatusDeleteFailed = newStackStatus("DELETE_FAILED") |