From d4156cd362ed6a0ff9255d095aa18c12915b4b16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Odstr=C4=8Dil=C3=ADk?= Date: Fri, 15 Mar 2024 15:48:57 +0100 Subject: [PATCH] initial commit --- .github/workflows/template-sync.yaml | 4 +++- .templatesyncignore | 9 --------- README.md | 2 +- versions.tf | 2 +- 4 files changed, 5 insertions(+), 12 deletions(-) delete mode 100644 .templatesyncignore diff --git a/.github/workflows/template-sync.yaml b/.github/workflows/template-sync.yaml index 9bc90d3..d95b5d5 100644 --- a/.github/workflows/template-sync.yaml +++ b/.github/workflows/template-sync.yaml @@ -22,4 +22,6 @@ jobs: source_repo_path: lablabs/terraform-aws-eks-universal-addon upstream_branch: main pr_labels: kind/sync - is_pr_cleanup: true + pr_branch_name_prefix: "feat/universal-addon-sync" + pr_title: "feat(sync): sync universal-addon changes" + pr_commit_msg: "feat(sync): sync universal-addon changes" diff --git a/.templatesyncignore b/.templatesyncignore deleted file mode 100644 index 896cb30..0000000 --- a/.templatesyncignore +++ /dev/null @@ -1,9 +0,0 @@ -docs -helm -argo.tf -argo-helm.tf -helm.tf -iam.tf -outputs.tf -README.md -main.tf diff --git a/README.md b/README.md index a885b9f..9513201 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ See [Basic example](examples/basic/README.md) for further information. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.5.0 | -| [aws](#requirement\_aws) | ~> 5.0 | +| [aws](#requirement\_aws) | ~> 5 | | [helm](#requirement\_helm) | >= 2.6.0 | | [kubernetes](#requirement\_kubernetes) | >= 2.20.0 | | [utils](#requirement\_utils) | >= 0.17.0 | diff --git a/versions.tf b/versions.tf index 162894b..d2a1597 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 5.0" + version = "~> 5" } kubernetes = { source = "hashicorp/kubernetes"