Skip to content

Commit 39888d9

Browse files
author
Abdul Wahid
authored
Add versions file for example (#5)
1 parent 309bca8 commit 39888d9

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ All notable changes to this project will be documented in this file.
55
<a name="unreleased"></a>
66
## [Unreleased]
77

8-
- Remove 'overwrite' + updates
8+
- Add versions file for example
9+
- Remove 'overwrite' + updates ([#4](https://github.com/marcincuber/terraform-aws-ssm-parameters/issues/4))
910

1011

1112
<a name="2.0.0"></a>

examples/core/versions.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
terraform {
2+
required_version = ">= 1.0.11"
3+
4+
required_providers {
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = "~> 5"
8+
}
9+
}
10+
}
11+
12+
provider "aws" {
13+
region = "eu-west-1"
14+
}

0 commit comments

Comments
 (0)