forked from outerbounds/terraform-aws-metaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (32 loc) · 1.19 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
output "METAFLOW_DATATOOLS_S3ROOT" {
value = "s3://${aws_s3_bucket.this.bucket}/data"
description = "Amazon S3 URL for Metaflow DataTools"
}
output "METAFLOW_DATASTORE_SYSROOT_S3" {
value = "s3://${aws_s3_bucket.this.bucket}/metaflow"
description = "Amazon S3 URL for Metaflow DataStore"
}
output "database_password_secret_manager_arn" {
value = aws_secretsmanager_secretrds_db_password.arn
description = "The arn of the database password stored in AWS secrets manager"
}
output "database_username" {
value = var.db_username
description = "The database username"
}
output "datastore_s3_bucket_kms_key_arn" {
value = aws_kms_key.s3.arn
description = "The ARN of the KMS key used to encrypt the Metaflow datastore S3 bucket"
}
output "rds_master_instance_endpoint" {
value = aws_db_instance.this.endpoint
description = "The database connection endpoint in address:port format"
}
output "s3_bucket_arn" {
value = aws_s3_bucket.this.arn
description = "The ARN of the bucket we'll be using as blob storage"
}
output "s3_bucket_name" {
value = aws_s3_bucket.this.bucket
description = "The name of the bucket we'll be using as blob storage"
}