Skip to content

Commit 3a62011

Browse files
author
mcdonnnj
committed
# Conflicts: # terraform/user.tf
2 parents 16521cc + 26819a9 commit 3a62011

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

terraform/outputs.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
output "access_key" {
2-
value = module.user.access_key
32
description = "The IAM access key associated with the CI IAM user created by this module."
43
sensitive = true
4+
value = module.user.access_key
55
}
66

77
output "role" {
8-
value = module.user.role
98
description = "The IAM role that the CI user can assume to read SSM parameters in the Images account."
9+
value = module.user.role
1010
}
1111

1212
output "user" {
13-
value = module.user.user
1413
description = "The CI IAM user created by this module."
14+
value = module.user.user
1515
}

terraform/user.tf

+8
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,15 @@ module "user" {
2222
aws.images-ssm = aws.images_ssm
2323
}
2424
25+
<<<<<<< HEAD
2526
entity = "skeleton-ansible-role-with-test-user"
2627
ssm_parameters = ["/example/parameter"]
2728
>>>>>>> 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
2836
}

terraform/variables.tf

+7-5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
variable "terraform_state_bucket" {
88
description = "The name of the S3 bucket where Terraform state is stored."
9+
nullable = false
910
type = string
1011
}
1112

@@ -16,17 +17,18 @@ variable "terraform_state_bucket" {
1617
# ------------------------------------------------------------------------------
1718

1819
variable "aws_region" {
19-
type = string
20-
description = "The AWS region to deploy into (e.g. us-east-1)."
2120
default = "us-east-1"
21+
description = "The AWS region to deploy into (e.g. us-east-1)."
22+
nullable = false
23+
type = string
2224
}
2325

2426
variable "tags" {
25-
type = map(string)
26-
description = "Tags to apply to all AWS resources created"
27-
2827
default = {
2928
Team = "VM Fusion - Development"
3029
Application = "ansible-role-ncats-webd testing"
3130
}
31+
description = "Tags to apply to all AWS resources created"
32+
nullable = false
33+
type = map(string)
3234
}

0 commit comments

Comments
 (0)