Skip to content

Commit

Permalink
AWS: add accounts for kops
Browse files Browse the repository at this point in the history
Ref: #5127

- `kops-infra-ci` will be used to run e2e tests until we switch to
  boskos
- `kops-infra-services` will be used to provision services needed to run
  kops e2e tests like Route53 or S3.

Signed-off-by: Arnaud Meukam <ameukam@gmail.com>
  • Loading branch information
ameukam committed Apr 14, 2023
1 parent cf4c916 commit 5c3000f
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
Copyright 2023 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

/* This file contains:
- AWS accounts used by kOps
*/

module "kops_infra_ci" {
source = "../modules/org-account"
account_name = "kops-infra-ci"
email = "k8s-infra-aws-admins+kops-infra-ci@kubernetes.io"
tags = {
environment = "prod",
group = "sig/cluster-lifecycle"
}
}

module "kops_infra_services" {
source = "../modules/org-account"
account_name = "kops-infra-services"
email = "k8s-infra-aws-admins+kops-infra-services@kubernetes.io"
tags = {
environment = "prod"
group = "sig/cluster-lifecycle"
}
}

0 comments on commit 5c3000f

Please sign in to comment.