diff --git a/iac/core/eks_cluster/default.tfvars b/iac/core/eks_cluster/default.tfvars new file mode 100644 index 00000000..d8dba436 --- /dev/null +++ b/iac/core/eks_cluster/default.tfvars @@ -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 +} diff --git a/iac/core/iam_role_eks/default.tfvars b/iac/core/iam_role_eks/default.tfvars new file mode 100644 index 00000000..1d0cf3e9 --- /dev/null +++ b/iac/core/iam_role_eks/default.tfvars @@ -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 = "/" +} diff --git a/iac/core/s3_runtime/default.tfvars b/iac/core/s3_runtime/default.tfvars new file mode 100644 index 00000000..05b6037e --- /dev/null +++ b/iac/core/s3_runtime/default.tfvars @@ -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" +} diff --git a/iac/core/security_group/default.tfvars b/iac/core/security_group/default.tfvars new file mode 100644 index 00000000..de584f50 --- /dev/null +++ b/iac/core/security_group/default.tfvars @@ -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" +} diff --git a/iac/core/vpc_endpoint/default.tfvars b/iac/core/vpc_endpoint/default.tfvars new file mode 100644 index 00000000..25f0b774 --- /dev/null +++ b/iac/core/vpc_endpoint/default.tfvars @@ -0,0 +1,5 @@ +# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved. +# SPDX-License-Identifier: MIT-0 + +q = { +} diff --git a/iac/core/vpc_route/default.tfvars b/iac/core/vpc_route/default.tfvars new file mode 100644 index 00000000..25f0b774 --- /dev/null +++ b/iac/core/vpc_route/default.tfvars @@ -0,0 +1,5 @@ +# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved. +# SPDX-License-Identifier: MIT-0 + +q = { +}