Commit 3a62011 mcdonnnj
committed
File tree 3 files changed +18
-8
lines changed
3 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 1
1
output "access_key" {
2
- value = module. user . access_key
3
2
description = " The IAM access key associated with the CI IAM user created by this module."
4
3
sensitive = true
4
+ value = module. user . access_key
5
5
}
6
6
7
7
output "role" {
8
- value = module. user . role
9
8
description = " The IAM role that the CI user can assume to read SSM parameters in the Images account."
9
+ value = module. user . role
10
10
}
11
11
12
12
output "user" {
13
- value = module. user . user
14
13
description = " The CI IAM user created by this module."
14
+ value = module. user . user
15
15
}
Original file line number Diff line number Diff line change @@ -22,7 +22,15 @@ module "user" {
22
22
aws.images-ssm = aws.images_ssm
23
23
}
24
24
25
+ <<<<<<< HEAD
25
26
entity = "skeleton-ansible-role-with-test-user"
26
27
ssm_parameters = ["/example/parameter"]
27
28
>>>>>>> 8cc1712a5cae219f786b8e03c4ff6941296f89c1
29
+ =======
30
+ entity = "skeleton-ansible-role-with-test-user"
31
+
32
+ # If necessary, provide a list of SSM parameters that the test user needs to
33
+ # be able to read
34
+ # ssm_parameters = ["/example/parameter"]
35
+ >>>>>>> 26819a903c52b39dce7b3673f54402d3d281fba3
28
36
}
Original file line number Diff line number Diff line change 6
6
7
7
variable "terraform_state_bucket" {
8
8
description = " The name of the S3 bucket where Terraform state is stored."
9
+ nullable = false
9
10
type = string
10
11
}
11
12
@@ -16,17 +17,18 @@ variable "terraform_state_bucket" {
16
17
# ------------------------------------------------------------------------------
17
18
18
19
variable "aws_region" {
19
- type = string
20
- description = " The AWS region to deploy into (e.g. us-east-1)."
21
20
default = " us-east-1"
21
+ description = " The AWS region to deploy into (e.g. us-east-1)."
22
+ nullable = false
23
+ type = string
22
24
}
23
25
24
26
variable "tags" {
25
- type = map (string )
26
- description = " Tags to apply to all AWS resources created"
27
-
28
27
default = {
29
28
Team = " VM Fusion - Development"
30
29
Application = " ansible-role-ncats-webd testing"
31
30
}
31
+ description = " Tags to apply to all AWS resources created"
32
+ nullable = false
33
+ type = map (string )
32
34
}
You can’t perform that action at this time.
0 commit comments