# GoDaddy

![GoDaddy-logo.svg](https://assets.relyanceuat.xyz/images/docs/8457565579661/8456744257037.svg)
GoDaddy is an online domain registrar and web-hosting website. It offers a number of web services for individuals and businesses such as domain registration and web hosting, to niche services like issuing secure sockets layer (SSL) certificates.

In order to integrate GoDaddy with Relyance AI you will need an **API Key** and **API Secret**.

#### In GoDaddy:

1. Login to your GoDaddy account.
2. Go here: [https://developer.godaddy.com/keys](https://developer.godaddy.com/keys)
3. Click on the Create New API Key button.
4. Provide a meaningful name for the key and select **Production**.
5. Click **Next**.
6. This will bring up a dialog box. Copy the API Key and API Secret to be used in Relyance AI.

![GoDaddy-1.png](https://assets.relyanceuat.xyz/images/docs/8457565579661/8457375006605.png)

![GoDaddy-2.png](https://assets.relyanceuat.xyz/images/docs/8457565579661/8457404647949.png)

![GoDaddy-3.png](https://assets.relyanceuat.xyz/images/docs/8457565579661/8457374897549.png)

#### In the Relyance AI application:

1. Login to your Relyance account.
2. Navigate to the **Settings** Menu in the bottom left-hand side.
3. Select **Integrations**.
4. Click on the **Vendor Integration** tab.
5. Find the **GoDaddy** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **API Key** and **API Secret** into their respective fields.

![GoDaddy-4.png](https://assets.relyanceuat.xyz/images/docs/8457565579661/8457374820109.png)

The **Authentication** step asks for:

- **API Key**: required; held as a secret.
- **API Secret**: required; held as a secret.

9. Click **Authenticate**.
10. At this point, you should see the following result on the **Vendor** Integrations page:

![GoDaddy-5.png](https://assets.relyanceuat.xyz/images/docs/8457565579661/8457404569997.png)

11. Congratulations, you are now connected to **GoDaddy**.

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). Non-secret fields go in `auth.params`; secret fields go in `auth.secrets_wo`, which is write-only — never stored in Terraform state. Rotate secrets by bumping `auth.secrets_wo_version`.

```hcl
resource "relyance_integration_connection" "godaddy" {
  vendor = "godaddy"
  name   = "<your connection name>"

  auth = {
    method = "api-key"
    params = {
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      api_key = var.godaddy_api_key
      api_secret = var.godaddy_api_secret
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}
```

<!-- terraform-examples:end -->
