Resource: aws_redshift_authentication_profile

Creates a Redshift authentication profile

Example Usage

resource "aws_redshift_authentication_profile" "example" {
  authentication_profile_name = "example"
  authentication_profile_content = jsonencode(
    {
      AllowDBUserOverride = "1"
      Client_ID           = "ExampleClientID"
      App_ID              = "example"
    }
  )
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Redshift Authentication by authentication_profile_name. For example:

import {
  to = aws_redshift_authentication_profile.test
  id = "example"
}

Using terraform import, import Redshift Authentication by authentication_profile_name. For example:

% terraform import aws_redshift_authentication_profile.test example