github.com/GoogleCloudPlatform/terraformer@v0.8.18/tests/datadog/resources/outputs.tf (about) 1 # Dashboards 2 output "datadog_dashboard--ordered_dashboard_example" { 3 value = datadog_dashboard.ordered_dashboard_example.id 4 } 5 6 output "datadog_dashboard--free_dashboard_example" { 7 value = datadog_dashboard.free_dashboard_example.id 8 } 9 10 # Downtimes 11 output "datadog_downtime--downtime_example" { 12 value = datadog_downtime.downtime_example.id 13 } 14 15 # Monitors 16 output "datadog_monitor--monitor_example" { 17 value = datadog_monitor.monitor_example.id 18 } 19 20 # Synthetics 21 output "datadog_synthetics_test--test_api_example" { 22 value = datadog_synthetics_test.test_api_example.id 23 } 24 25 # Users 26 output "datadog_user--user_example" { 27 value = datadog_user.user_example.id 28 } 29 30 output "datadog_user--user_example_two" { 31 value = datadog_user.user_example_two.id 32 } 33