outputs.tf 425 B

123456789101112131415
  1. output "id" {
  2. description = "The ID of this resource"
  3. value = fastly_service_vcl.files_service.id
  4. }
  5. output "active_version" {
  6. description = "The currently active version of the Fastly Service"
  7. value = fastly_service_vcl.files_service.active_version
  8. }
  9. output "cloned_version" {
  10. description = "The latest cloned version by the provider"
  11. value = fastly_service_vcl.files_service.cloned_version
  12. }