outputs.tf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. output "id" {
  2. description = "The ID of this resource."
  3. value = module.app.id
  4. }
  5. output "active_version" {
  6. description = "The currently active version of the Fastly Service."
  7. value = module.app.active_version
  8. }
  9. output "cloned_version" {
  10. description = "The latest cloned version by the provider."
  11. value = module.app.cloned_version
  12. }
  13. output "api_id" {
  14. description = "The ID of this resource."
  15. value = module.api.id
  16. }
  17. output "api_active_version" {
  18. description = "The currently active version of the Fastly Service."
  19. value = module.api.active_version
  20. }
  21. output "api_cloned_version" {
  22. description = "The latest cloned version by the provider."
  23. value = module.api.cloned_version
  24. }
  25. output "proxy_id" {
  26. description = "The ID of this resource."
  27. value = module.proxy.id
  28. }
  29. output "proxy_active_version" {
  30. description = "The currently active version of the Fastly Service."
  31. value = module.proxy.active_version
  32. }
  33. output "proxy_cloned_version" {
  34. description = "The latest cloned version by the provider."
  35. value = module.proxy.cloned_version
  36. }