5161c3c072
This introduces a new structure, as activities are moved to a separate AWS Account for reasons (tm). Change-Id: Ic310eca2dc0d4ee81bae8944238b26910067336a Reviewed-on: https://cl.tvl.fyi/c/depot/+/10124 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
28 lines
676 B
Nix
28 lines
676 B
Nix
{ depot
|
|
, pkgs
|
|
, ...
|
|
}:
|
|
depot.nix.readTree.drvTargets {
|
|
shell = pkgs.mkShell {
|
|
name = "archivist-shell";
|
|
packages = with pkgs; [ awscli2 ];
|
|
|
|
AWS_PROFILE = "archivist";
|
|
AWS_CONFIG_FILE = pkgs.writeText "aws-config" ''
|
|
[sso-session nixos]
|
|
sso_region = eu-north-1
|
|
sso_start_url = https://nixos.awsapps.com/start
|
|
sso_registration_scopes = sso:account:access
|
|
|
|
[profile "archivist"]
|
|
sso_session = nixos
|
|
sso_account_id = 286553126452
|
|
sso_role_name = AWSAdministratorAccess
|
|
|
|
[profile "archeologist"]
|
|
sso_session = nixos
|
|
sso_account_id = 080433136561
|
|
sso_role_name = archeologist
|
|
'';
|
|
};
|
|
}
|