-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Said Sef <[email protected]>
- Loading branch information
Showing
9 changed files
with
90 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
variable "region" { | ||
default = "eu-west-1" | ||
description = "AWS Region name" | ||
description = "AWS Region name." | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
output "role_id" { | ||
value = aws_iam_role.role[0].id | ||
sensitive = false | ||
description = "AWS IAM role ID" | ||
description = "The ID of the AWS IAM role." | ||
} | ||
|
||
output "role_arn" { | ||
value = aws_iam_role.role[0].arn | ||
sensitive = false | ||
description = "AWS IAM role ARN" | ||
description = "The ARN of the AWS IAM role." | ||
} | ||
|
||
output "repositories" { | ||
value = local.repositories_refs | ||
sensitive = false | ||
description = "List of GitLab repositories and refs" | ||
description = "A list of GitLab repositories and their references." | ||
} | ||
|
||
output "thumbprint" { | ||
value = [for fingerprint in data.tls_certificate.provider.certificates : fingerprint.sha1_fingerprint] | ||
sensitive = false | ||
description = "GitLab certificates thumbprints" | ||
description = "Thumbprints of GitLab certificates." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters