Skip to content

Commit c8db42d

Browse files
authored
Merge pull request #20 from scribd/vadimka/drop-tf-support-lower-than-1.0
[SERF-3091] Drop Terraform support lower than 1.0
2 parents cc2e02f + 109c904 commit c8db42d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
strategy:
1515
matrix:
16-
activity: ["0.13.7", "0.14.11", "1.0.11"]
16+
activity: ["1.0.11", "1.1.9", "1.2.9", "1.3.10", "1.4.7", "1.5.7"]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v3
2020

2121
- name: Setup terraform ${{ matrix.activity }}
22-
uses: hashicorp/setup-terraform@v2
22+
uses: hashicorp/setup-terraform@v3
2323
with:
2424
terraform_version: ${{ matrix.activity }}
2525

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A module to create application secrets stored in [AWS Secrets Manager](https://a
1717

1818
## Prerequisites
1919

20-
* [Terraform](https://www.terraform.io/downloads.html) (version `0.13.7` or higher)
20+
* [Terraform](https://www.terraform.io/downloads.html) (version `1.0.0` or higher)
2121
* [AWS provider](https://www.terraform.io/docs/providers/aws/) (version `2.60` or higher)
2222

2323
## Example usage
@@ -210,25 +210,25 @@ module "user" {
210210
211211
## Inputs
212212

213-
| Name | Description | Type | Default | Required |
214-
| ------------ | -------------------------------------- | ------------ | ----------- | --------- |
215-
| `app_name` | Application name | string | `null` | yes |
216-
| `aws_region` | AWS region | string | `us-east-2` | no |
217-
| `secrets` | List of objects of [secrets](#secrets) | list(object) | `null` | yes |
218-
| `tags` | Key-value map of tags | map(string) | `{}` | no |
213+
| Name | Description | Type | Default | Required |
214+
|:-------------|:---------------------------------------|:-------------|:------------|:---------|
215+
| `app_name` | Application name | string | `null` | yes |
216+
| `aws_region` | AWS region | string | `us-east-2` | no |
217+
| `secrets` | List of objects of [secrets](#secrets) | list(object) | `null` | yes |
218+
| `tags` | Key-value map of tags | map(string) | `{}` | no |
219219

220220
### Secrets
221221

222222
| Name | Description | Type | Default |
223-
| -------------- | ----------------------------------------------------- | ------ | ------- |
223+
|:---------------|:------------------------------------------------------|:-------|:--------|
224224
| `name` | Secret name | string | `null` |
225225
| `value` | Secret value | string | `null` |
226226
| `allowed_arns` | List of principal ARNs that have access to the secret | list | `null` |
227227

228228
## Outputs
229229

230230
| Name | Description | Sensitive |
231-
| --------------- | ---------------------------------------- | --------- |
231+
|:----------------|:-----------------------------------------|:----------|
232232
| `all` | Map of names and arns of created secrets | yes |
233233
| `kms_key_arn` | The master key ARN | no |
234234
| `kms_alias_arn` | The master key alias ARN | no |

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 0.13.7"
2+
required_version = ">= 1.0"
33

44
required_providers {
55
aws = {

0 commit comments

Comments
 (0)