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
type AxiosConfigWithMetadata = InternalAxiosRequestConfig & { | |
metadata?: { | |
axiosId: string | |
} | |
} | |
const interceptRequest = (config: AxiosConfigWithMetadata) => { | |
const axiosId = uuidV4(); | |
logger.debug("outbound request", { |
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 "team" { | |
admin-members = [ | |
"brunapereira" | |
] | |
engineer-members = [ | |
"ebragaparah" | |
] | |
source = "./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
variable "name" { | |
description = "Name of the repository" | |
type = string | |
} | |
variable "description" { | |
description = "Description of the repository" | |
type = string | |
} |
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 "github_repository" "repository" { | |
name = var.name | |
description = var.description | |
visibility = "private" | |
has_issues = true | |
delete_branch_on_merge = true | |
auto_init = true | |
} |
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 "team" { | |
admin-members = [ | |
"brunapereira" | |
] | |
engineer-members = [ | |
"ebragaparah" | |
] | |
source = "./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
module "team" { | |
source = "./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
resource "github_team" "engineers-team" { | |
name = "Engineers" | |
description = "organization engineers" | |
privacy = "closed" | |
} | |
resource "github_team" "admins-team" { | |
name = "Admins" | |
description = "organization admins" | |
privacy = "closed" |
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
variable "engineer-members" { | |
type = set(string) | |
description = "List of github users that belong to engineers team" | |
} | |
variable "admin-members" { | |
type = set(string) | |
description = "List of github users that belong to admins 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
module "team" { | |
admin-members = [ | |
"brunapereira" | |
] | |
engineer-members = [ | |
"ebragaparah" | |
] | |
source = "./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
resource "github_team" "engineers-team" { | |
name = "Engineers" | |
description = "organization engineers" | |
privacy = "closed" | |
} |
NewerOlder