Skip to content

Commit db1db08

Browse files
committed
remove Feedback from Next steps
1 parent 40a580e commit db1db08

File tree

3 files changed

+40
-51
lines changed

3 files changed

+40
-51
lines changed

articles/azure-government/connect-with-azure-pipelines.md

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
---
2-
title: Deploy an app in Azure Government with Azure Pipelines | Microsoft Docs
2+
title: Deploy an app in Azure Government with Azure Pipelines
33
description: Information on configuring continuous deployment to your applications hosted with a subscription in Azure Government by connecting from Azure Pipelines.
4-
services: azure-government
5-
cloud: gov
6-
documentationcenter: ''
7-
84
ms.service: azure-government
9-
ms.devlang: na
105
ms.topic: article
11-
ms.tgt_pltfrm: na
12-
ms.workload: azure-government
13-
ms.date: 10/25/2018
146
ms.custom: devx-track-azurepowershell
7+
ms.date: 11/02/2021
158
---
169

1710
# Deploy an app in Azure Government with Azure Pipelines
1811

1912
This article helps you use Azure Pipelines to set up continuous integration (CI) and continuous deployment (CD) of your web app running in Azure Government. CI/CD automates the build of your code from a repo along with the deployment (release) of the built code artifacts to a service or set of services in Azure Government. In this tutorial, you will build a web app and deploy it to an Azure Governments app service. This build and release process is triggered by a change to a code file in the repo.
2013

2114
> [!NOTE]
22-
> Azure Pipelines is not available as part of Azure Government. While this tutorial shows how to configure the CI/CD capabilities of Azure Pipelines in order to deploy an app to a service inside Azure Government, be aware that Azure Pipelines runs its pipelines outside of Azure Government. Research your organization's security and service policies before using it as part of your deployment tools.
15+
> For special considerations when deploying apps to Azure Government, see **[Deploy apps to Azure Government Cloud](/azure/devops/pipelines/library/government-cloud).**
2316
2417
[Azure Pipelines](/azure/devops/pipelines/get-started/) is used by teams to configure continuous deployment for applications hosted in Azure subscriptions. We can use this service for applications running in Azure Government by defining [service connections](/azure/devops/pipelines/library/service-endpoints) for Azure Government.
2518

@@ -92,13 +85,13 @@ Follow [Deploy a web app to Azure App Services](/azure/devops/pipelines/apps/cd/
9285

9386
## Q&A
9487

95-
Q: Do I need a build agent?<br/>
96-
A: You need at least one [agent](/azure/devops/pipelines/agents/agents) to run your deployments. By default, the build and deployment processes are configured to use the [hosted agents](/azure/devops/pipelines/agents/agents#microsoft-hosted-agents). Configuring a private agent would limit data sharing outside of Azure Government.
88+
**Do I need a build agent?** <br/>
89+
You need at least one [agent](/azure/devops/pipelines/agents/agents) to run your deployments. By default, the build and deployment processes are configured to use the [hosted agents](/azure/devops/pipelines/agents/agents#microsoft-hosted-agents). Configuring a private agent would limit data sharing outside of Azure Government.
9790

98-
Q: I use Team Foundation Server on-premises. Can I configure CD on my server to target Azure Government?<br/>
99-
A: Currently, Team Foundation Server cannot be used to deploy to an Azure Government Cloud.
91+
**I use Team Foundation Server on-premises. Can I configure CD on my server to target Azure Government?** <br/>
92+
Currently, Team Foundation Server cannot be used to deploy to an Azure Government Cloud.
10093

10194
## Next steps
102-
* Subscribe to the [Azure Government blog](https://blogs.msdn.microsoft.com/azuregov/)
103-
* Get help on Stack Overflow by using the "[azure-gov](https://stackoverflow.com/questions/tagged/azure-gov)" tag
104-
* Give us feedback or request new features via the [Azure Government feedback forum](https://feedback.azure.com/forums/558487-azure-government)
95+
96+
- Subscribe to the [Azure Government blog](https://blogs.msdn.microsoft.com/azuregov/)
97+
- Get help on Stack Overflow by using the "[azure-gov](https://stackoverflow.com/questions/tagged/azure-gov)" tag

articles/azure-government/documentation-government-aad-auth-qs.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
11
---
2-
title: Azure Government Integrate Azure AD Authentication | Microsoft Docs
3-
description: This article demonstrates how to integrating Azure AD Authentication on Azure Government.
4-
services: azure-government
5-
cloud: gov
6-
documentationcenter: ''
7-
2+
title: Azure Government integrate Azure AD Authentication
3+
description: This article demonstrates how to integrating Azure AD authentication on Azure Government.
84
ms.service: azure-government
9-
ms.devlang: na
105
ms.topic: article
11-
ms.tgt_pltfrm: na
12-
ms.workload: azure-government
13-
ms.date: 11/2/2017
14-
6+
ms.date: 11/02/2021
157
---
16-
# Integrate Azure AD Authentication with Web Apps on Azure Government
8+
9+
# Integrate Azure AD authentication with Web Apps on Azure Government
10+
1711
The following quickstart helps you get started integrating Azure AD Authentication with applications on Azure Government. Azure Active Directory (Azure AD) Authentication on Azure Government is similar to the Azure commercial platform, with a [few exceptions](./compare-azure-government-global-azure.md).
1812

1913
Learn more about [Azure Active Directory Authentication Scenarios](../active-directory/develop/authentication-vs-authorization.md).
2014

2115
## Integrate Azure AD login into a web application using OpenID Connect
16+
2217
This section shows how to integrate Azure AD using the OpenID Connect protocol for signing in users into a web app.
2318

2419
### Prerequisites
20+
2521
- An Azure AD tenant in Azure Government. You must have an [Azure Government subscription](https://azure.microsoft.com/overview/clouds/government/request/) in order to have an Azure AD tenant in Azure Government. For more information on how to get an Azure AD tenant, see [How to get an Azure AD tenant](../active-directory/develop/quickstart-create-new-tenant.md)
2622
- A user account in your Azure AD tenant. This sample does not work with a Microsoft account, so if you signed in to the Azure Government portal with a Microsoft account and have never created a user account in your directory before, you need to do that now.
2723
- Have an [ASP.NET Core application deployed and running in Azure Government](documentation-government-howto-deploy-webandmobile.md)
@@ -45,11 +41,14 @@ This section shows how to integrate Azure AD using the OpenID Connect protocol f
4541
8. For the App ID URI, enter https://\<your_tenant_name\>/\<name_of_your_app\>, replacing \<your_tenant_name\> with the name of your Azure AD tenant and \<name_of_your_app\> with the name of your application.
4642

4743
### Step 2: Configure your app to use your Azure AD tenant
44+
4845
#### Azure Government Variations
46+
4947
The only variation when setting up Azure AD Authorization on the Azure Government cloud is in the Azure AD Instance:
5048
- "https:\//login.microsoftonline.us"
5149

5250
#### Configure the InventoryApp project
51+
5352
1. Open your application in Visual Studio 2019.
5453
2. Open the `appsettings.json` file.
5554
3. Add an `Authentication` section and fill out the properties with your Azure AD tenant information.
@@ -106,4 +105,3 @@ The only variation when setting up Azure AD Authorization on the Azure Governmen
106105
* Navigate to the [Azure Government PaaS Sample](https://github.com/Azure-Samples/gov-paas-sample) to see Azure AD Authentication as well as other services being integrated in an Application running on Azure Government.
107106
* Subscribe to the [Azure Government blog](https://blogs.msdn.microsoft.com/azuregov/)
108107
* Get help on Stack Overflow by using the "[azure-gov](https://stackoverflow.com/questions/tagged/azure-gov)" tag
109-
* Give feedback or request new features via the [Azure Government feedback forum](https://feedback.azure.com/forums/558487-azure-government)
Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,32 @@
11
---
2-
title: Azure Government Marketplace | Microsoft Docs
3-
description: This article provides guidance on how to use the Azure Government Marketplace.
4-
services: azure-government
5-
cloud: gov
6-
documentationcenter: ''
7-
8-
2+
title: Azure Government Marketplace
3+
description: This article provides guidance on how to use Azure Government Marketplace.
94
ms.service: azure-government
10-
ms.devlang: na
115
ms.topic: article
12-
ms.tgt_pltfrm: na
13-
ms.workload: azure-government
14-
ms.date: 07/13/2018
15-
6+
ms.date: 11/02/2021
167
---
8+
179
# Azure Government Marketplace
18-
The Azure Government Marketplace helps connect government agencies and partners with independent software vendors (ISVs) and start-ups that are offering their solutions in Azure Government.
10+
11+
Azure Government Marketplace helps connect government agencies and partners with independent software vendors (ISVs) and start-ups that are offering their solutions in Azure Government.
1912

2013
> [!NOTE]
21-
> For information on making your images available in Azure Government, see the [partner onboarding guidelines](documentation-government-manage-marketplace-partners.md).
14+
> For information on making your images available in Azure Government, see the [partner onboarding guidelines](./documentation-government-manage-marketplace-partners.md).
2215
2316
## Variations
24-
The Azure Government Marketplace differs from the Azure Marketplace in the following ways:
25-
* Only Bring Your Own License (BYOL) and Pay-as-you-Go (PayGo) images are available.
26-
* A different set of images is available. You can find the list of available images [here](./documentation-government-image-gallery.md)
17+
18+
Azure Government Marketplace differs from Azure Marketplace in the following ways:
19+
20+
- Only Bring Your Own License (BYOL) and Pay-as-you-Go (PayGo) images are available.
21+
- A different set of images is available. For a list of available images, see [Azure Government Marketplace images](./documentation-government-image-gallery.md).
2722

2823
> [!NOTE]
29-
> Red Hat Enterprise Linux is available in Azure Government with Azure Marketplace billing. This is a special case exception to the above statement about license options in Azure Government.
24+
> Red Hat Enterprise Linux is available in Azure Government with Azure Marketplace billing. This offering is a special case exception to the above statement about license options in Azure Government.
3025
3126
## Enable the Azure Government Marketplace
27+
3228
If your subscription is under an Enterprise Agreement (EA), the Azure Government Marketplace must be enabled before you can deploy a Marketplace solution to your subscription.
29+
3330
1. Log in to the [Enterprise Account Portal](https://ea.azure.com) as an Enterprise Administrator
3431
1. Navigate to **Manage**
3532
1. Under **Enrollment Details**, click the pencil icon next to the **Azure Marketplace** line item
@@ -40,6 +37,7 @@ If your subscription is under an Enterprise Agreement (EA), the Azure Government
4037
> It can take up to 24 hours for the change to take effect.
4138
4239
## Deploy a Solution to your Subscription
40+
4341
1. **Log in** to the [Azure Government portal](https://portal.azure.us).
4442

4543
1. Click on **+New**.
@@ -64,6 +62,6 @@ If your subscription is under an Enterprise Agreement (EA), the Azure Government
6462
1. To start the provisioning process, click **Ok**.
6563

6664
## Next steps
67-
* Subscribe to the [Azure Government blog](https://blogs.msdn.microsoft.com/azuregov/)
68-
* Get help on Stack Overflow by using the [azure-gov](https://stackoverflow.com/questions/tagged/azure-gov) tag
69-
* Give feedback or request new features via the [Azure Government feedback forum](https://feedback.azure.com/forums/558487-azure-government)
65+
66+
- Subscribe to the [Azure Government blog](https://blogs.msdn.microsoft.com/azuregov/)
67+
- Get help on Stack Overflow by using the [azure-gov](https://stackoverflow.com/questions/tagged/azure-gov) tag

0 commit comments

Comments
 (0)