Skip to content

google_ads_call_asset

A call asset is a phone number that can be attached to your ads as a “call extension.” It’s the data side of the call; the link to the campaign or ad group is via google_ads_customer_asset.

Example

resource "google_ads_call_asset" "main_phone" {
country_code = "US"
phone_number = "5551234567"
call_conversion_reporting_state = "USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION"
call_conversion_action = google_ads_conversion_action.lead.id
}

Schema

Required

  • country_code ( String )
  • phone_number ( String )

Optional

  • call_conversion_reporting_state ( String ) One of: DISABLED, USE_ACCOUNT_LEVEL_CALL_CONVERSION_ACTION, USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION .
  • call_conversion_action ( Reference to google_ads_conversion_action )

See also