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
# Objetivo geral do projeto | |
## Nosso objetivo, genericamente: | |
Disponibilizar um database as service para nossos desenvolvedores, integrado ao nosso projeto de plataforma interna. | |
A solução precisará suportar ao menos: | |
- PostgreSQL | |
- MongoDB | |
- MS SQLServer |
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
$ cat .github/CODEOWNERS | |
# This file defines who should review and approve changes in each tribe or team, and | |
# also other content inside this repo. | |
# | |
# Code owners are automatically requested for review when someone opens a pull | |
# request that modifies code that they own. | |
# See https://help.github.com/articles/about-codeowners/ | |
* @approvers-top-level |
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
$ cat .github/CODEOWNERS | |
# This file defines who should review and approve changes in each tribe, and | |
# also other content inside this repo. | |
# | |
# Code owners are automatically requested for review when someone opens a pull | |
# request that modifies code that they own. | |
# See https://help.github.com/articles/about-codeowners/ | |
* @approvers-top-level |
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
locals { | |
org_user_list = [ | |
"someguy", | |
"someotherguy", | |
"dgmorales" | |
] | |
} | |
resource "github_membership" "dgmorales" { | |
count = "${length(local.org_user_list)}" | |
username = "${element(local.org_user_list, count.index)}" |
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
module "otherguy__stone_com_br" { | |
source = "../modules/org-member" | |
email = "[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
# modules/org-member/variable.tf | |
variable "email" { | |
description = "email - (Required) The email address of the user" | |
} | |
variable "role" { | |
description = "role - (Optional) The user role in the org" | |
default = "member" | |
} |
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
# modules/user-map/main.tf | |
locals { | |
user_map = { | |
"[email protected]" = "someguy" | |
"[email protected]" = "strangenick89" | |
} | |
} | |
# modules/user-map/output.tf | |
output "map" { |
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 "github" { | |
organization = "my-organization" | |
} | |
# Add a user to the organization | |
resource "github_membership" "dgmorales" { | |
username = "dgmorales" | |
role = "member" # or "admin" for an org owner | |
} | |
resource "github_team" "my-team" { |
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
Desenvolvedor de infraestrutura / IT Automation Engineer | |
Profissionais em nível júnior e pleno para trabalhar em projeto de transformação e migração de um datacenter para um novo modelo baseado totalmente em infraestrutura como código, automação e outras práticas DevOps. | |
Necessidade de relocação para o Rio de Janeiro no início do projeto, com alternativas de trabalho em São Paulo ou remoto no futuro. | |
Estamos buscando profissionais com integridade, inteligência e energia, para trabalhar em uma equipe que tem por objetivo transformar e evoluir continuamente a empresa, tanto tecnologicamente quanto culturalmente, calcando-se em um mix de: tecnologias de ponta open source (e algumas proprietárias também), metodologias ágeis, cultura e práticas DevOps. | |
Experiências e conhecimentos buscados: |
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
Cloud Engineer | |
Profissional sênior com experiência com Openstack, para trabalhar em projeto de construção de uma nuvem privada em empresa do mercado financeiro. | |
Necessidade de relocação para o Rio de Janeiro no início do projeto, com alternativas de trabalho em São Paulo ou remoto no futuro. | |
Estamos buscando profissionais com integridade, inteligência e energia, para trabalhar em uma equipe que tem por objetivo transformar e evoluir continuamente a empresa, tanto tecnologicamente quanto culturalmente, calcando-se em um mix de: tecnologias de ponta open source (e algumas proprietárias também), metodologias ágeis, cultura e práticas DevOps. | |
Alguns diferenciais: | |
- Experiência ou conhecimento com distribuições ViO (VMWare Integrated Openstack) e/ou RHOSP (Red Hat Openstack Platform) |
NewerOlder