Launch Darkly v0.0.6 published on Sunday, Feb 19, 2023 by lbrlabs
launchdarkly.getFeatureFlag
Explore with Pulumi AI
Provides a LaunchDarkly feature flag data source.
This data source allows you to retrieve feature flag information from your LaunchDarkly organization.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Launchdarkly = Pulumi.Launchdarkly;
return await Deployment.RunAsync(() => 
{
    var example = Launchdarkly.GetFeatureFlag.Invoke(new()
    {
        Key = "example-flag",
        ProjectKey = "example-project",
    });
});
package main
import (
	"github.com/lbrlabs/pulumi-launchdarkly/sdk/go/launchdarkly"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err = launchdarkly.LookupFeatureFlag(ctx, &launchdarkly.LookupFeatureFlagArgs{
			Key:        "example-flag",
			ProjectKey: "example-project",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.launchdarkly.LaunchdarklyFunctions;
import com.pulumi.launchdarkly.inputs.GetFeatureFlagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var example = LaunchdarklyFunctions.getFeatureFlag(GetFeatureFlagArgs.builder()
            .key("example-flag")
            .projectKey("example-project")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as launchdarkly from "@pulumi/launchdarkly";
const example = launchdarkly.getFeatureFlag({
    key: "example-flag",
    projectKey: "example-project",
});
import pulumi
import pulumi_launchdarkly as launchdarkly
example = launchdarkly.get_feature_flag(key="example-flag",
    project_key="example-project")
variables:
  example:
    fn::invoke:
      Function: launchdarkly:getFeatureFlag
      Arguments:
        key: example-flag
        projectKey: example-project
Using getFeatureFlag
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getFeatureFlag(args: GetFeatureFlagArgs, opts?: InvokeOptions): Promise<GetFeatureFlagResult>
function getFeatureFlagOutput(args: GetFeatureFlagOutputArgs, opts?: InvokeOptions): Output<GetFeatureFlagResult>def get_feature_flag(archived: Optional[bool] = None,
                     client_side_availabilities: Optional[Sequence[GetFeatureFlagClientSideAvailability]] = None,
                     custom_properties: Optional[Sequence[GetFeatureFlagCustomProperty]] = None,
                     defaults: Optional[GetFeatureFlagDefaults] = None,
                     description: Optional[str] = None,
                     include_in_snippet: Optional[bool] = None,
                     key: Optional[str] = None,
                     maintainer_id: Optional[str] = None,
                     project_key: Optional[str] = None,
                     tags: Optional[Sequence[str]] = None,
                     temporary: Optional[bool] = None,
                     variations: Optional[Sequence[GetFeatureFlagVariation]] = None,
                     opts: Optional[InvokeOptions] = None) -> GetFeatureFlagResult
def get_feature_flag_output(archived: Optional[pulumi.Input[bool]] = None,
                     client_side_availabilities: Optional[pulumi.Input[Sequence[pulumi.Input[GetFeatureFlagClientSideAvailabilityArgs]]]] = None,
                     custom_properties: Optional[pulumi.Input[Sequence[pulumi.Input[GetFeatureFlagCustomPropertyArgs]]]] = None,
                     defaults: Optional[pulumi.Input[GetFeatureFlagDefaultsArgs]] = None,
                     description: Optional[pulumi.Input[str]] = None,
                     include_in_snippet: Optional[pulumi.Input[bool]] = None,
                     key: Optional[pulumi.Input[str]] = None,
                     maintainer_id: Optional[pulumi.Input[str]] = None,
                     project_key: Optional[pulumi.Input[str]] = None,
                     tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     temporary: Optional[pulumi.Input[bool]] = None,
                     variations: Optional[pulumi.Input[Sequence[pulumi.Input[GetFeatureFlagVariationArgs]]]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetFeatureFlagResult]func LookupFeatureFlag(ctx *Context, args *LookupFeatureFlagArgs, opts ...InvokeOption) (*LookupFeatureFlagResult, error)
func LookupFeatureFlagOutput(ctx *Context, args *LookupFeatureFlagOutputArgs, opts ...InvokeOption) LookupFeatureFlagResultOutput> Note: This function is named LookupFeatureFlag in the Go SDK.
public static class GetFeatureFlag 
{
    public static Task<GetFeatureFlagResult> InvokeAsync(GetFeatureFlagArgs args, InvokeOptions? opts = null)
    public static Output<GetFeatureFlagResult> Invoke(GetFeatureFlagInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFeatureFlagResult> getFeatureFlag(GetFeatureFlagArgs args, InvokeOptions options)
public static Output<GetFeatureFlagResult> getFeatureFlag(GetFeatureFlagArgs args, InvokeOptions options)
fn::invoke:
  function: launchdarkly:index/getFeatureFlag:getFeatureFlag
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Key string
- The unique feature flag key that references the flag in your application code.
- ProjectKey string
- The feature flag's project key.
- Archived bool
- ClientSide List<Lbrlabs.Availabilities Pulumi Package. Launchdarkly. Inputs. Get Feature Flag Client Side Availability> 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- CustomProperties List<Lbrlabs.Pulumi Package. Launchdarkly. Inputs. Get Feature Flag Custom Property> 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- Defaults
Lbrlabs.Pulumi Package. Launchdarkly. Inputs. Get Feature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- Description string
- The variation's description.
- IncludeIn boolSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- MaintainerId string
- The feature flag maintainer's 24 character alphanumeric team member ID.
- List<string>
- Set of feature flag tags.
- Temporary bool
- Whether the flag is a temporary flag.
- Variations
List<Lbrlabs.Pulumi Package. Launchdarkly. Inputs. Get Feature Flag Variation> 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- Key string
- The unique feature flag key that references the flag in your application code.
- ProjectKey string
- The feature flag's project key.
- Archived bool
- ClientSide []GetAvailabilities Feature Flag Client Side Availability 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- CustomProperties []GetFeature Flag Custom Property 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- Defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- Description string
- The variation's description.
- IncludeIn boolSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- MaintainerId string
- The feature flag maintainer's 24 character alphanumeric team member ID.
- []string
- Set of feature flag tags.
- Temporary bool
- Whether the flag is a temporary flag.
- Variations
[]GetFeature Flag Variation 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- key String
- The unique feature flag key that references the flag in your application code.
- projectKey String
- The feature flag's project key.
- archived Boolean
- clientSide List<GetAvailabilities Feature Flag Client Side Availability> 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- customProperties List<GetFeature Flag Custom Property> 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- description String
- The variation's description.
- includeIn BooleanSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- maintainerId String
- The feature flag maintainer's 24 character alphanumeric team member ID.
- List<String>
- Set of feature flag tags.
- temporary Boolean
- Whether the flag is a temporary flag.
- variations
List<GetFeature Flag Variation> 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- key string
- The unique feature flag key that references the flag in your application code.
- projectKey string
- The feature flag's project key.
- archived boolean
- clientSide GetAvailabilities Feature Flag Client Side Availability[] 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- customProperties GetFeature Flag Custom Property[] 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- description string
- The variation's description.
- includeIn booleanSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- maintainerId string
- The feature flag maintainer's 24 character alphanumeric team member ID.
- string[]
- Set of feature flag tags.
- temporary boolean
- Whether the flag is a temporary flag.
- variations
GetFeature Flag Variation[] 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- key str
- The unique feature flag key that references the flag in your application code.
- project_key str
- The feature flag's project key.
- archived bool
- client_side_ Sequence[Getavailabilities Feature Flag Client Side Availability] 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- custom_properties Sequence[GetFeature Flag Custom Property] 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- description str
- The variation's description.
- include_in_ boolsnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- maintainer_id str
- The feature flag maintainer's 24 character alphanumeric team member ID.
- Sequence[str]
- Set of feature flag tags.
- temporary bool
- Whether the flag is a temporary flag.
- variations
Sequence[GetFeature Flag Variation] 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- key String
- The unique feature flag key that references the flag in your application code.
- projectKey String
- The feature flag's project key.
- archived Boolean
- clientSide List<Property Map>Availabilities 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- customProperties List<Property Map>
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- defaults Property Map
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- description String
- The variation's description.
- includeIn BooleanSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- maintainerId String
- The feature flag maintainer's 24 character alphanumeric team member ID.
- List<String>
- Set of feature flag tags.
- temporary Boolean
- Whether the flag is a temporary flag.
- variations List<Property Map>
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
getFeatureFlag Result
The following output properties are available:
- ClientSide List<Lbrlabs.Availabilities Pulumi Package. Launchdarkly. Outputs. Get Feature Flag Client Side Availability> 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- Defaults
Lbrlabs.Pulumi Package. Launchdarkly. Outputs. Get Feature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- Id string
- The provider-assigned unique ID for this managed resource.
- IncludeIn boolSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- Key string
- The unique custom property key.
- MaintainerId string
- The feature flag maintainer's 24 character alphanumeric team member ID.
- Name string
- The name of the custom property.
- ProjectKey string
- VariationType string
- The feature flag's variation type: boolean,string,numberorjson.
- Variations
List<Lbrlabs.Pulumi Package. Launchdarkly. Outputs. Get Feature Flag Variation> 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- Archived bool
- CustomProperties List<Lbrlabs.Pulumi Package. Launchdarkly. Outputs. Get Feature Flag Custom Property> 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- Description string
- The variation's description.
- List<string>
- Set of feature flag tags.
- Temporary bool
- Whether the flag is a temporary flag.
- ClientSide []GetAvailabilities Feature Flag Client Side Availability 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- Defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- Id string
- The provider-assigned unique ID for this managed resource.
- IncludeIn boolSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- Key string
- The unique custom property key.
- MaintainerId string
- The feature flag maintainer's 24 character alphanumeric team member ID.
- Name string
- The name of the custom property.
- ProjectKey string
- VariationType string
- The feature flag's variation type: boolean,string,numberorjson.
- Variations
[]GetFeature Flag Variation 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- Archived bool
- CustomProperties []GetFeature Flag Custom Property 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- Description string
- The variation's description.
- []string
- Set of feature flag tags.
- Temporary bool
- Whether the flag is a temporary flag.
- clientSide List<GetAvailabilities Feature Flag Client Side Availability> 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- id String
- The provider-assigned unique ID for this managed resource.
- includeIn BooleanSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- key String
- The unique custom property key.
- maintainerId String
- The feature flag maintainer's 24 character alphanumeric team member ID.
- name String
- The name of the custom property.
- projectKey String
- variationType String
- The feature flag's variation type: boolean,string,numberorjson.
- variations
List<GetFeature Flag Variation> 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- archived Boolean
- customProperties List<GetFeature Flag Custom Property> 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- description String
- The variation's description.
- List<String>
- Set of feature flag tags.
- temporary Boolean
- Whether the flag is a temporary flag.
- clientSide GetAvailabilities Feature Flag Client Side Availability[] 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- id string
- The provider-assigned unique ID for this managed resource.
- includeIn booleanSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- key string
- The unique custom property key.
- maintainerId string
- The feature flag maintainer's 24 character alphanumeric team member ID.
- name string
- The name of the custom property.
- projectKey string
- variationType string
- The feature flag's variation type: boolean,string,numberorjson.
- variations
GetFeature Flag Variation[] 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- archived boolean
- customProperties GetFeature Flag Custom Property[] 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- description string
- The variation's description.
- string[]
- Set of feature flag tags.
- temporary boolean
- Whether the flag is a temporary flag.
- client_side_ Sequence[Getavailabilities Feature Flag Client Side Availability] 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- defaults
GetFeature Flag Defaults 
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- id str
- The provider-assigned unique ID for this managed resource.
- include_in_ boolsnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- key str
- The unique custom property key.
- maintainer_id str
- The feature flag maintainer's 24 character alphanumeric team member ID.
- name str
- The name of the custom property.
- project_key str
- variation_type str
- The feature flag's variation type: boolean,string,numberorjson.
- variations
Sequence[GetFeature Flag Variation] 
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- archived bool
- custom_properties Sequence[GetFeature Flag Custom Property] 
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- description str
- The variation's description.
- Sequence[str]
- Set of feature flag tags.
- temporary bool
- Whether the flag is a temporary flag.
- clientSide List<Property Map>Availabilities 
- A map describing whether this flag has been made available to the client-side JavaScript SDK. To learn more, read Nested Client-Side Availability Block.
- defaults Property Map
- A map describing the index of the variation served when the flag is on for new environments. To learn more, read Nested Defaults Blocks.
- id String
- The provider-assigned unique ID for this managed resource.
- includeIn BooleanSnippet 
- Deprecated A boolean describing whether this flag has been made available to the client-side Javescript SDK using the client-side ID only. include_in_snippetis now deprecated. Please retrieve information fromclient_side_availability.using_environment_idto maintain future compatability.
- key String
- The unique custom property key.
- maintainerId String
- The feature flag maintainer's 24 character alphanumeric team member ID.
- name String
- The name of the custom property.
- projectKey String
- variationType String
- The feature flag's variation type: boolean,string,numberorjson.
- variations List<Property Map>
- List of nested blocks describing the variations associated with the feature flag. To learn more, read Nested Variations Blocks.
- archived Boolean
- customProperties List<Property Map>
- List of nested blocks describing the feature flag's custom properties. To learn more, read Nested Custom Properties.
- description String
- The variation's description.
- List<String>
- Set of feature flag tags.
- temporary Boolean
- Whether the flag is a temporary flag.
Supporting Types
GetFeatureFlagClientSideAvailability     
- UsingEnvironment boolId 
- When set to true, this flag is available to SDKs using the client-side ID.
- UsingMobile boolKey 
- When set to true, this flag is available to SDKs using a mobile key.
- UsingEnvironment boolId 
- When set to true, this flag is available to SDKs using the client-side ID.
- UsingMobile boolKey 
- When set to true, this flag is available to SDKs using a mobile key.
- usingEnvironment BooleanId 
- When set to true, this flag is available to SDKs using the client-side ID.
- usingMobile BooleanKey 
- When set to true, this flag is available to SDKs using a mobile key.
- usingEnvironment booleanId 
- When set to true, this flag is available to SDKs using the client-side ID.
- usingMobile booleanKey 
- When set to true, this flag is available to SDKs using a mobile key.
- using_environment_ boolid 
- When set to true, this flag is available to SDKs using the client-side ID.
- using_mobile_ boolkey 
- When set to true, this flag is available to SDKs using a mobile key.
- usingEnvironment BooleanId 
- When set to true, this flag is available to SDKs using the client-side ID.
- usingMobile BooleanKey 
- When set to true, this flag is available to SDKs using a mobile key.
GetFeatureFlagCustomProperty    
GetFeatureFlagDefaults   
- OffVariation int
- (Required) The index of the variation the flag will default to in all new environments when off.
- OnVariation int
- (Required) The index of the variation the flag will default to in all new environments when on.
- OffVariation int
- (Required) The index of the variation the flag will default to in all new environments when off.
- OnVariation int
- (Required) The index of the variation the flag will default to in all new environments when on.
- offVariation Integer
- (Required) The index of the variation the flag will default to in all new environments when off.
- onVariation Integer
- (Required) The index of the variation the flag will default to in all new environments when on.
- offVariation number
- (Required) The index of the variation the flag will default to in all new environments when off.
- onVariation number
- (Required) The index of the variation the flag will default to in all new environments when on.
- off_variation int
- (Required) The index of the variation the flag will default to in all new environments when off.
- on_variation int
- (Required) The index of the variation the flag will default to in all new environments when on.
- offVariation Number
- (Required) The index of the variation the flag will default to in all new environments when off.
- onVariation Number
- (Required) The index of the variation the flag will default to in all new environments when on.
GetFeatureFlagVariation   
- Value string
- The list of custom property value strings.
- Description string
- The variation's description.
- Name string
- The name of the custom property.
- Value string
- The list of custom property value strings.
- Description string
- The variation's description.
- Name string
- The name of the custom property.
- value String
- The list of custom property value strings.
- description String
- The variation's description.
- name String
- The name of the custom property.
- value string
- The list of custom property value strings.
- description string
- The variation's description.
- name string
- The name of the custom property.
- value str
- The list of custom property value strings.
- description str
- The variation's description.
- name str
- The name of the custom property.
- value String
- The list of custom property value strings.
- description String
- The variation's description.
- name String
- The name of the custom property.
Package Details
- Repository
- launchdarkly lbrlabs/pulumi-launchdarkly
- License
- Notes
- This Pulumi package is based on the launchdarklyTerraform Provider.
