|
| 1 | +output "artifacts_user_name" { |
| 2 | + value = "${module.artifacts_user.user_name}" |
| 3 | + description = "Normalized IAM user name" |
| 4 | +} |
| 5 | + |
| 6 | +output "artifacts_user_arn" { |
| 7 | + value = "${module.artifacts_user.user_arn}" |
| 8 | + description = "The ARN assigned by AWS for the user" |
| 9 | +} |
| 10 | + |
| 11 | +output "artifacts_user_unique_id" { |
| 12 | + value = "${module.artifacts_user.user_unique_id}" |
| 13 | + description = "The user unique ID assigned by AWS" |
| 14 | +} |
| 15 | + |
| 16 | +output "artifacts_user_access_key_id" { |
| 17 | + value = "${module.artifacts_user.access_key_id}" |
| 18 | + description = "The access key ID" |
| 19 | +} |
| 20 | + |
| 21 | +output "artifacts_user_secret_access_key" { |
| 22 | + value = "${module.artifacts_user.secret_access_key}" |
| 23 | + description = "The secret access key. This will be written to the state file in plain-text" |
| 24 | +} |
| 25 | + |
| 26 | +output "artifacts_s3_bucket_name" { |
| 27 | + value = "${module.origin.s3_bucket_name}" |
| 28 | + description = "The S3 bucket which serves as the origin for the CDN and S3 website" |
| 29 | +} |
| 30 | + |
| 31 | +output "artifacts_s3_bucket_domain_name" { |
| 32 | + value = "${module.origin.s3_bucket_domain_name}" |
| 33 | + description = "The bucket domain name. Will be of format bucketname.s3.amazonaws.com." |
| 34 | +} |
| 35 | + |
| 36 | +output "artifacts_s3_bucket_arn" { |
| 37 | + value = "${module.origin.s3_bucket_arn}" |
| 38 | + description = "The ARN of the bucket. Will be of format arn:aws:s3:::bucketname." |
| 39 | +} |
| 40 | + |
| 41 | +output "artifacts_s3_bucket_website_endpoint" { |
| 42 | + value = "${module.origin.s3_bucket_website_endpoint}" |
| 43 | + description = "The website endpoint, if the bucket is configured with a website. If not, this will be an empty string." |
| 44 | +} |
| 45 | + |
| 46 | +output "artifacts_s3_bucket_website_domain" { |
| 47 | + value = "${module.origin.s3_bucket_website_domain}" |
| 48 | + description = "The domain of the website endpoint, if the bucket is configured with a website. If not, this will be an empty string. This is used to create Route 53 alias records." |
| 49 | +} |
| 50 | + |
| 51 | +output "artifacts_s3_bucket_hosted_zone_id" { |
| 52 | + value = "${module.origin.s3_bucket_hosted_zone_id}" |
| 53 | + description = "The Route 53 Hosted Zone ID for this bucket's region." |
| 54 | +} |
| 55 | + |
| 56 | +output "artifacts_cloudfront_id" { |
| 57 | + value = "${module.cdn.cf_id}" |
| 58 | + description = "The identifier for the distribution. For example: EDFDVBD632BHDS5." |
| 59 | +} |
| 60 | + |
| 61 | +output "artifacts_cloudfront_arn" { |
| 62 | + value = "${module.cdn.cf_arn}" |
| 63 | + description = "The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID." |
| 64 | +} |
| 65 | + |
| 66 | +output "artifacts_cloudfront_aliases" { |
| 67 | + value = "${module.cdn.cf_aliases}" |
| 68 | + description = "Extra CNAMEs (alternate domain names), if any, for this distribution." |
| 69 | +} |
| 70 | + |
| 71 | +output "artifacts_cloudfront_status" { |
| 72 | + value = "${module.cdn.cf_status}" |
| 73 | + description = "The current status of the distribution. Deployed if the distribution's information is fully propagated throughout the Amazon CloudFront system." |
| 74 | +} |
| 75 | + |
| 76 | +output "artifacts_cloudfront_domain_name" { |
| 77 | + value = "${module.cdn.cf_domain_name}" |
| 78 | + description = "The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net." |
| 79 | +} |
| 80 | + |
| 81 | +output "artifacts_cloudfront_etag" { |
| 82 | + value = "${module.cdn.cf_etag}" |
| 83 | + description = "The current version of the distribution's information. For example: E2QWRUHAPOMQZL." |
| 84 | +} |
| 85 | + |
| 86 | +output "artifacts_cloudfront_hosted_zone_id" { |
| 87 | + value = "${module.cdn.cf_hosted_zone_id}" |
| 88 | + description = "The CloudFront Route 53 zone ID that can be used to route an Alias Resource Record Set to. This attribute is simply an alias for the zone ID Z2FDTNDATAQYW2." |
| 89 | +} |
| 90 | + |
| 91 | +output "artifacts_cloudfront_origin_access_identity_path" { |
| 92 | + value = "${module.cdn.cf_origin_access_identity}" |
| 93 | + description = "The CloudFront origin access identity to associate with the origin." |
| 94 | +} |
0 commit comments