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
catalog: | |
locations: | |
- type: url | |
target: https://github.com/backstage/software-templates/blob/main/scaffolder-templates/docs-template/template.yaml | |
rules: | |
- allow: [Template] |
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
auth: | |
# see https://backstage.io/docs/auth/ to learn about auth providers | |
environment: development | |
providers: | |
github: | |
development: | |
clientId: ${AUTH_GITHUB_CLIENT_ID} | |
clientSecret: ${AUTH_GITHUB_CLIENT_SECRET} |
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
export POSTGRES_HOST=localhost | |
export POSTGRES_PORT=5432 | |
export POSTGRES_USER=postgres | |
export POSTGRES_PASSWORD=example | |
export AUTH_GITHUB_CLIENT_ID=[OMITTED] | |
export AUTH_GITHUB_CLIENT_SECRET=[OMITTED] |
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
export POSTGRES_HOST=localhost | |
export POSTGRES_PORT=5432 | |
export POSTGRES_USER=postgres | |
export POSTGRES_PASSWORD=example |
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
# Use postgres/example user/password credentials | |
version: '3.1' | |
services: | |
db: | |
image: postgres | |
restart: always | |
environment: | |
POSTGRES_PASSWORD: example |
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
dn: cn=AWSControlTowerAdmins,ou=groups,dc=larkintuckerllc,dc=com | |
changetype: modify | |
add: uniqueMember | |
uniqueMember: uid=example-developer,ou=people,dc=larkintuckerllc,dc=com |
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
dn: uid=example-developer,ou=people,dc=larkintuckerllc,dc=com | |
objectClass: inetOrgPerson | |
cn: Joe Developer | |
givenname: Joe | |
sn: Developer | |
mail: [email protected] |
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
dn: cn=developers,ou=groups,dc=larkintuckerllc,dc=com | |
objectClass: groupOfUniqueNames | |
cn: developers | |
uniqueMember: uid=example-developer,ou=people,dc=larkintuckerllc,dc=com |
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
dn: uid=example-aws,ou=people,dc=larkintuckerllc,dc=com | |
objectClass: inetOrgPerson | |
cn: AWS Admin | |
givenname: AWS | |
sn: Admin | |
mail: [email protected] |
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
dn: ou=groups,dc=larkintuckerllc,dc=com | |
objectClass: organizationalUnit | |
ou: groups |