Skip to content

Commit

Permalink
Add developer_portal_url attribute on azurerm_api_management
Browse files Browse the repository at this point in the history
Signed-off-by: Sune Keller <absukl@almbrand.dk>
  • Loading branch information
sirlatrom committed Jun 9, 2020
1 parent d333d0b commit ad6b287
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -429,6 +429,11 @@ func resourceArmApiManagementService() *schema.Resource {
Computed: true,
},

"developer_portal_url": {
Type: schema.TypeString,
Computed: true,
},

"scm_url": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -640,6 +645,7 @@ func resourceArmApiManagementServiceRead(d *schema.ResourceData, meta interface{
d.Set("gateway_url", props.GatewayURL)
d.Set("gateway_regional_url", props.GatewayRegionalURL)
d.Set("portal_url", props.PortalURL)
d.Set("developer_portal_url", props.DeveloperPortalURL)
d.Set("management_api_url", props.ManagementAPIURL)
d.Set("scm_url", props.ScmURL)
d.Set("public_ip_addresses", props.PublicIPAddresses)
Expand Down

0 comments on commit ad6b287

Please sign in to comment.