From f3ee97e6653efa1a900ed23b8a7af82ec0058831 Mon Sep 17 00:00:00 2001
From: Loann Le <84412881+taoism4504@users.noreply.github.com>
Date: Wed, 9 Feb 2022 16:15:17 -0800
Subject: [PATCH] added link to hcpv docs (#13992)

---
 website/content/docs/what-is-vault.mdx | 21 +++++++++------------
 website/data/docs-nav-data.json        |  5 ++++-
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/website/content/docs/what-is-vault.mdx b/website/content/docs/what-is-vault.mdx
index c46a4fb36..68aa2b97c 100644
--- a/website/content/docs/what-is-vault.mdx
+++ b/website/content/docs/what-is-vault.mdx
@@ -7,17 +7,6 @@ description: >-
   compares to existing software, and contains a quick start for using Vault.
 ---
 
-# Introduction to Vault
-
-Welcome to the introduction guide to HashiCorp Vault! This guide is the best
-place to get started with Vault. This guide covers what Vault is, what problems
-it can solve, how it compares to existing software, and contains a quick start
-for using Vault.
-
-If you are already familiar with the basics of Vault, the
-[documentation](/docs) provides a better reference guide for all
-available features as well as internals.
-
 ## What is Vault?
 
 Vault is an identity-based **secrets** and encryption management system. A secret is anything that you want to tightly control access to, such as API encryption keys, passwords, or certificates. Vault provides encryption services that are gated by authentication and authorization methods. Using Vault鈥檚 UI, CLI, or HTTP API, access to secrets and other sensitive data can be securely stored and managed, tightly controlled (restricted), and auditable.
@@ -49,7 +38,7 @@ The key features of Vault are:
 
 - **Data Encryption**: Vault can encrypt and decrypt data without storing
   it. This allows security teams to define encryption parameters and
-  developers to store encrypted data in a location such as a SQL database 
+  developers to store encrypted data in a location such as a SQL database
   without having to design their own encryption methods.
 
 - **Leasing and Renewal**: All secrets in Vault have a _lease_ associated
@@ -62,6 +51,14 @@ The key features of Vault are:
   Revocation assists in key rolling as well as locking down systems in the
   case of an intrusion.
 
+## What is HCP Vault?
+
+HCP Vault is a hosted version of Vault, which is operated by HashiCorp to allow organizations to get up and running quickly. HCP Vault uses the same binary as self-hosted Vault, which means you will have a consistent user experience. You can use the same Vault clients to communicate with HCP Vault as you use to communicate with a self-hosted Vault.
+
+~> **Note**: Currently, HCP Vault clusters are located on AWS running in multiple regions across North America, Asia, and Europe. We will support additional cloud providers in the future.
+
+To learn more about HCP Vault, see the [HCP Vault documentation](https://cloud.hashicorp.com/docs/vault). You can also get started with HCP Vault by using the HCP portal to set up your managed Vault cluster. Refer to the [Getting Started with HCP Vault](https://learn.hashicorp.com/collections/vault/cloud) tutorial.
+
 ## Next Steps
 
 See the page on [Vault use cases](/docs/use-cases) to see the multiple ways
diff --git a/website/data/docs-nav-data.json b/website/data/docs-nav-data.json
index 12a04b1e2..655fb8cb8 100644
--- a/website/data/docs-nav-data.json
+++ b/website/data/docs-nav-data.json
@@ -1046,7 +1046,6 @@
             "path": "secrets/identity/oidc-provider"
           }
         ]
-
       },
       {
         "title": "MongoDB Atlas",
@@ -1873,6 +1872,10 @@
             "path": "enterprise/sentinel/properties"
           }
         ]
+      },
+      {
+        "title": "HCP Vault",
+        "href": "https://cloud.hashicorp.com/docs/vault"
       }
     ]
   }
-- 
GitLab