/* Copyright (c) 2019-2022 Digital Energy Cloud Solutions LLC. All Rights Reserved. Authors: Petr Krutov, Stanislav Solovev, Kasim Baybikov, Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package provider import ( "fmt" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" "golang.org/x/net/context" "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "repository.basistech.ru/BASIS/terraform-provider-decort/internal/location" "repository.basistech.ru/BASIS/terraform-provider-decort/internal/statefuncs" ) func Provider() *schema.Provider { return &schema.Provider{ Schema: map[string]*schema.Schema{ "authenticator": { Type: schema.TypeString, Required: true, StateFunc: statefuncs.StateFuncToLower, ValidateFunc: validation.StringInSlice([]string{"decs3o", "legacy", "jwt", "bvs"}, true), // ignore case while validating Description: "Authentication mode to use when connecting to DECORT cloud API. Should be one of 'decs3o', 'legacy', 'jwt' or 'bvs'.", }, "oauth2_url": { Type: schema.TypeString, Optional: true, StateFunc: statefuncs.StateFuncToLower, DefaultFunc: schema.EnvDefaultFunc("DECORT_OAUTH2_URL", nil), Description: "OAuth2 application URL in 'decs3o' and 'bvs' authentication mode.", }, "controller_url": { Type: schema.TypeString, Required: true, ForceNew: true, StateFunc: statefuncs.StateFuncToLower, DefaultFunc: schema.EnvDefaultFunc("DECORT_CONTROLLER_URL", nil), Description: "URL of DECORT Cloud controller to use. API calls will be directed to this URL.", }, "user": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_USER", nil), Description: "User name for DECORT cloud API operations in 'legacy' authentication mode.", }, "password": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_PASSWORD", nil), Description: "User password for DECORT cloud API operations in 'legacy' authentication mode.", }, "bvs_user": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_BVS_USER", nil), Description: "User name for DECORT cloud API operations in 'bvs' authentication mode.", }, "bvs_password": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_BVS_PASSWORD", nil), Description: "User password for DECORT cloud API operations in 'bvs' authentication mode.", }, "domain": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_DOMAIN", nil), Description: "User password for DECORT cloud API operations in 'bvs' authentication mode.", }, "app_id": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_APP_ID", nil), Description: "Application ID to access DECORT cloud API in 'decs3o' and 'bvs' authentication mode.", }, "app_secret": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_APP_SECRET", nil), Description: "Application secret to access DECORT cloud API in 'decs3o' and 'bvs' authentication mode.", }, "jwt": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("DECORT_JWT", nil), Description: "JWT to access DECORT cloud API in 'jwt' authentication mode.", }, "allow_unverified_ssl": { Type: schema.TypeBool, Optional: true, Default: false, Description: "If true, DECORT API will not verify SSL certificates. Use this with caution and in trusted environments only!", }, "path_cfg": { Type: schema.TypeString, Optional: true, Description: "The path of the configuration file entry", }, "path_token": { Type: schema.TypeString, Optional: true, Description: "The path of the token file entry", }, "time_to_refresh": { Type: schema.TypeInt, Optional: true, Description: "The number of minutes before the expiration of the token, a refresh will be made", }, }, ResourcesMap: newResourcesMap(), DataSourcesMap: newDataSourcesMap(), ConfigureContextFunc: providerConfigure, } } func providerConfigure(ctx context.Context, d *schema.ResourceData) (interface{}, diag.Diagnostics) { decsController, err := controller.ControllerConfigure(d) if err != nil { return nil, diag.FromErr(err) } gridId, err := location.UtilityLocationGetDefaultGridID(ctx, decsController) if err != nil { return nil, diag.FromErr(err) } if gridId == 0 { return nil, diag.FromErr(fmt.Errorf("providerConfigure: invalid default Grid ID = 0")) } return decsController, nil }