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
[[aws]] | |
name="Production" | |
source="CREDENTIALS_FILE" | |
path="/usr/bin/credentials" | |
profile="default" | |
[[mongodbatlas]] | |
name="Staging" | |
organizationId="orgIdValue" | |
publicApiKey="publicApiKeyValue" |
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
docker run -v /local/path/to/config.toml:/etc/config/config.toml -v /local/path/to/credentials:/etc/config/credentials -d -p 3000:3000 --name komiser tailwarden/komiser:3.0.0 komiser start --config /etc/config/config.toml |
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
[[aws]] | |
name="Admin-account" | |
source="CREDENTIALS_FILE" | |
path="./credentials.yaml" | |
profile="default" | |
[[aws]] | |
name="Sandbox-account" | |
source="ENVIRONMENT_VARIABLES" |
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
provider "aws" { | |
default_tags { | |
tags = { | |
Environment = "Sandbox" | |
Project = "DevOps" | |
} | |
} | |
} |
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
resource "aws_organizations_policy" "OU-1-tagging-policy" { | |
name = "OU-1-tagging-policy" | |
content = <<CONTENT | |
{ | |
"tags": { | |
"Environment": { | |
"tag_value": { | |
"@@assign": [ | |
"Sandbox", |