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.
- Okta Terraform provider
- Google Workspace
- Okta Integration Network (OIN)
- Okta Identity Engine (OIE)
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.
- Access the Terraform configuration file.
- Define an
okta_app_samlresource to manage the Security Assertion Markup Language (SAML) application. - Enter the value
googlefor thepreconfigured_appattribute within the resource block.
resource "okta_app_saml" "example" {
label = "Google Workspace"
preconfigured_app = "google"
}
-
Review the Okta SAML Application Documentation for additional required arguments and configuration details.
-
Save the changes to the configuration file.
