feat(module): initial import
This commit is contained in:
commit
a046131bd2
8 changed files with 415 additions and 0 deletions
11
outputs.tf
Normal file
11
outputs.tf
Normal file
|
@ -0,0 +1,11 @@
|
|||
output "access_key_id" {
|
||||
description = "AWS IAM access key id."
|
||||
sensitive = false
|
||||
value = aws_iam_access_key.main.id
|
||||
}
|
||||
|
||||
output "access_key_secret" {
|
||||
description = "AWS IAM access key secret."
|
||||
sensitive = true
|
||||
value = aws_iam_access_key.main.secret
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue