Home > Software design >  How to set CloudFront Distribution Description?
How to set CloudFront Distribution Description?

Time:10-16

Terraform's docs doesn't say anything about any Description field. Neither Googling (which's is problematic in the first place, as Description is super-common word).

I tried adding a Description Tag, but it doesn't show up in the Description column of the CloudFront > Distributions page

CodePudding user response:

I believe you’re looking for the comment attribute.

CodePudding user response:

You can add a description using comment

Terraform has used cloudfront description as comment option.

comment (Optional) - Any comments you want to include about the distribution.

  • Related