Skip to content

Commit

Permalink
default tfvars
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Istrati committed May 7, 2024
1 parent b1b0859 commit 843f9a9
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 0 deletions.
14 changes: 14 additions & 0 deletions iac/core/eks_cluster/default.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0

q = {
name = "spf-eks-cluster"
version = "1.29"
public = true
private = true
admin = true
auth_mode = "API_AND_CONFIG_MAP"
addons = "vpc-cni,coredns,kube-proxy,eks-pod-identity-agent"
log_types = "api,audit,authenticator,controllerManager,scheduler"
retention = 7
}
8 changes: 8 additions & 0 deletions iac/core/iam_role_eks/default.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0

q = {
name = "spf-eks-cluster-role"
description = "SPF EKS CLUSTER ROLE"
path = "/"
}
15 changes: 15 additions & 0 deletions iac/core/s3_runtime/default.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0

q = {
bucket = "spf-runtime"
force_destroy = true
object_lock_enabled = true
object_lock_mode = "COMPLIANCE"
object_lock_days = 36500
object_lock_retain = "2345-12-31T23:59:59Z"
sse_algorithm = "AES256" # "aws:kms"
versioning_status = "Enabled"
logs_prefix = "s3_runtime_logs"
assume_role_name = "spf-cicd-assume-role"
}
8 changes: 8 additions & 0 deletions iac/core/security_group/default.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0

q = {
name = "spf-default"
description = "SPF DEFAULT SECURITY GROUP"
vpc_name = "default"
}
5 changes: 5 additions & 0 deletions iac/core/vpc_endpoint/default.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0

q = {
}
5 changes: 5 additions & 0 deletions iac/core/vpc_route/default.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0

q = {
}

0 comments on commit 843f9a9

Please sign in to comment.