<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
Create Google Workspace Integration with Okta Terraform Provider
Okta Identity Engine
SDKs & Libraries
Overview

This article details the process for creating a Google Workspace Integration within the Okta Integration Network (OIN) using the Okta Terraform provider. This guide aims to automate the deployment of the Google Workspace application.

Applies To
  • Okta Terraform provider
  • Google Workspace
  • Okta Integration Network (OIN)
  • Okta Identity Engine (OIE)
Cause

The discrepancy between the application name, Google Workspace, and the required Terraform attribute value, google, may lead to the entry of the value google_workspace. This results in a configuration error because the Okta Terraform provider recognizes only the string 'google' as the valid identifier for this integration.

Solution
  1. Access the Terraform configuration file.
  2. Define an okta_app_saml resource to manage the Security Assertion Markup Language (SAML) application.
  3. Enter the value google for the preconfigured_app attribute within the resource block.

resource "okta_app_saml" "example" {
  label             = "Google Workspace"
  preconfigured_app = "google"
}

  1. Review the Okta SAML Application Documentation for additional required arguments and configuration details.

  2. Save the changes to the configuration file.

Loading
Create Google Workspace Integration with Okta Terraform Provider