File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <a name =" v2.0.0 " ></a >
2+ ## [ v2.0.0] - 2019-09-20
3+
4+ - Add CHANGELOG
5+ - Upgrade module to support Terraform 0.12 ([ #2 ] ( https://github.com/gazoakley/terraform-aws-session-manager-settings/pull/2 ) )
6+
7+
8+ <a name =" v1.1.0 " ></a >
9+ ## [ v1.1.0] - 2017-10-06
10+
11+ - Improved documentation and new outputs for document_name and document_arn
12+
13+
14+ <a name =" v1.0.0 " ></a >
15+ ## v1.0.0 - 2017-10-04
16+
17+ - Initial commit
18+
19+
20+
21+ [ v2.0.0 ] : https://github.com/terraform-aws-modules/terraform-aws-security-group/compare/v1.1.0...v2.0.0
22+ [ v1.1.0 ] : https://github.com/terraform-aws-modules/terraform-aws-security-group/compare/v1.0.0...v1.1.0
Original file line number Diff line number Diff line change 1- provider "aws" {
2- version = " >= 1.36.0"
3- }
4-
51resource "aws_ssm_document" "session_manager_prefs" {
62 name = " SSM-SessionManagerRunShell"
73 document_type = " Session"
@@ -21,6 +17,4 @@ resource "aws_ssm_document" "session_manager_prefs" {
2117 }
2218}
2319DOC
24-
2520}
26-
Original file line number Diff line number Diff line change @@ -7,4 +7,3 @@ output "document_arn" {
77 description = " ARN of the created document. You can use this to create IAM policies that prevent changes to session manager preferences."
88 value = aws_ssm_document. session_manager_prefs . arn
99}
10-
Original file line number Diff line number Diff line change @@ -22,4 +22,3 @@ variable "cloudwatch_encryption_enabled" {
2222 default = true
2323 description = " (Optional) Encrypt log data."
2424}
25-
Original file line number Diff line number Diff line change 1-
21terraform {
32 required_version = " >= 0.12"
3+
4+ required_providers {
5+ aws = " >= 1.36.0"
6+ }
47}
You can’t perform that action at this time.
0 commit comments