openstack.identity.EndpointV3
Explore with Pulumi AI
Manages a V3 Endpoint resource within OpenStack Keystone.
Note: This usually requires admin privileges.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const service1 = new openstack.identity.ServiceV3("service_1", {
name: "my-service",
type: "my-service-type",
});
const endpoint1 = new openstack.identity.EndpointV3("endpoint_1", {
name: "my-endpoint",
serviceId: service1.id,
endpointRegion: service1.region,
url: "http://my-endpoint",
});
import pulumi
import pulumi_openstack as openstack
service1 = openstack.identity.ServiceV3("service_1",
name="my-service",
type="my-service-type")
endpoint1 = openstack.identity.EndpointV3("endpoint_1",
name="my-endpoint",
service_id=service1.id,
endpoint_region=service1.region,
url="http://my-endpoint")
package main
import (
"github.com/pulumi/pulumi-openstack/sdk/v4/go/openstack/identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
service1, err := identity.NewServiceV3(ctx, "service_1", &identity.ServiceV3Args{
Name: pulumi.String("my-service"),
Type: pulumi.String("my-service-type"),
})
if err != nil {
return err
}
_, err = identity.NewEndpointV3(ctx, "endpoint_1", &identity.EndpointV3Args{
Name: pulumi.String("my-endpoint"),
ServiceId: service1.ID(),
EndpointRegion: service1.Region,
Url: pulumi.String("http://my-endpoint"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using OpenStack = Pulumi.OpenStack;
return await Deployment.RunAsync(() =>
{
var service1 = new OpenStack.Identity.ServiceV3("service_1", new()
{
Name = "my-service",
Type = "my-service-type",
});
var endpoint1 = new OpenStack.Identity.EndpointV3("endpoint_1", new()
{
Name = "my-endpoint",
ServiceId = service1.Id,
EndpointRegion = service1.Region,
Url = "http://my-endpoint",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.openstack.identity.ServiceV3;
import com.pulumi.openstack.identity.ServiceV3Args;
import com.pulumi.openstack.identity.EndpointV3;
import com.pulumi.openstack.identity.EndpointV3Args;
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) {
var service1 = new ServiceV3("service1", ServiceV3Args.builder()
.name("my-service")
.type("my-service-type")
.build());
var endpoint1 = new EndpointV3("endpoint1", EndpointV3Args.builder()
.name("my-endpoint")
.serviceId(service1.id())
.endpointRegion(service1.region())
.url("http://my-endpoint")
.build());
}
}
resources:
service1:
type: openstack:identity:ServiceV3
name: service_1
properties:
name: my-service
type: my-service-type
endpoint1:
type: openstack:identity:EndpointV3
name: endpoint_1
properties:
name: my-endpoint
serviceId: ${service1.id}
endpointRegion: ${service1.region}
url: http://my-endpoint
Create EndpointV3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EndpointV3(name: string, args: EndpointV3Args, opts?: CustomResourceOptions);
@overload
def EndpointV3(resource_name: str,
args: EndpointV3Args,
opts: Optional[ResourceOptions] = None)
@overload
def EndpointV3(resource_name: str,
opts: Optional[ResourceOptions] = None,
endpoint_region: Optional[str] = None,
service_id: Optional[str] = None,
url: Optional[str] = None,
interface: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None)
func NewEndpointV3(ctx *Context, name string, args EndpointV3Args, opts ...ResourceOption) (*EndpointV3, error)
public EndpointV3(string name, EndpointV3Args args, CustomResourceOptions? opts = null)
public EndpointV3(String name, EndpointV3Args args)
public EndpointV3(String name, EndpointV3Args args, CustomResourceOptions options)
type: openstack:identity:EndpointV3
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EndpointV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EndpointV3Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EndpointV3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointV3Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var endpointV3Resource = new OpenStack.Identity.EndpointV3("endpointV3Resource", new()
{
EndpointRegion = "string",
ServiceId = "string",
Url = "string",
Interface = "string",
Name = "string",
Region = "string",
});
example, err := identity.NewEndpointV3(ctx, "endpointV3Resource", &identity.EndpointV3Args{
EndpointRegion: pulumi.String("string"),
ServiceId: pulumi.String("string"),
Url: pulumi.String("string"),
Interface: pulumi.String("string"),
Name: pulumi.String("string"),
Region: pulumi.String("string"),
})
var endpointV3Resource = new EndpointV3("endpointV3Resource", EndpointV3Args.builder()
.endpointRegion("string")
.serviceId("string")
.url("string")
.interface_("string")
.name("string")
.region("string")
.build());
endpoint_v3_resource = openstack.identity.EndpointV3("endpointV3Resource",
endpoint_region="string",
service_id="string",
url="string",
interface="string",
name="string",
region="string")
const endpointV3Resource = new openstack.identity.EndpointV3("endpointV3Resource", {
endpointRegion: "string",
serviceId: "string",
url: "string",
"interface": "string",
name: "string",
region: "string",
});
type: openstack:identity:EndpointV3
properties:
endpointRegion: string
interface: string
name: string
region: string
serviceId: string
url: string
EndpointV3 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The EndpointV3 resource accepts the following input properties:
- Endpoint
Region string - The endpoint region. The
region
andendpoint_region
can be different. - Service
Id string - The endpoint service ID.
- Url string
- The endpoint url.
- Interface string
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- Name string
- The endpoint name.
- Region string
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used.
- Endpoint
Region string - The endpoint region. The
region
andendpoint_region
can be different. - Service
Id string - The endpoint service ID.
- Url string
- The endpoint url.
- Interface string
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- Name string
- The endpoint name.
- Region string
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used.
- endpoint
Region String - The endpoint region. The
region
andendpoint_region
can be different. - service
Id String - The endpoint service ID.
- url String
- The endpoint url.
- interface_ String
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name String
- The endpoint name.
- region String
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used.
- endpoint
Region string - The endpoint region. The
region
andendpoint_region
can be different. - service
Id string - The endpoint service ID.
- url string
- The endpoint url.
- interface string
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name string
- The endpoint name.
- region string
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used.
- endpoint_
region str - The endpoint region. The
region
andendpoint_region
can be different. - service_
id str - The endpoint service ID.
- url str
- The endpoint url.
- interface str
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name str
- The endpoint name.
- region str
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used.
- endpoint
Region String - The endpoint region. The
region
andendpoint_region
can be different. - service
Id String - The endpoint service ID.
- url String
- The endpoint url.
- interface String
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name String
- The endpoint name.
- region String
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the EndpointV3 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Name string - The service name of the endpoint.
- Service
Type string - The service type of the endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Name string - The service name of the endpoint.
- Service
Type string - The service type of the endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- service
Name String - The service name of the endpoint.
- service
Type String - The service type of the endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- service
Name string - The service name of the endpoint.
- service
Type string - The service type of the endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- service_
name str - The service name of the endpoint.
- service_
type str - The service type of the endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- service
Name String - The service name of the endpoint.
- service
Type String - The service type of the endpoint.
Look up Existing EndpointV3 Resource
Get an existing EndpointV3 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EndpointV3State, opts?: CustomResourceOptions): EndpointV3
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
endpoint_region: Optional[str] = None,
interface: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
service_id: Optional[str] = None,
service_name: Optional[str] = None,
service_type: Optional[str] = None,
url: Optional[str] = None) -> EndpointV3
func GetEndpointV3(ctx *Context, name string, id IDInput, state *EndpointV3State, opts ...ResourceOption) (*EndpointV3, error)
public static EndpointV3 Get(string name, Input<string> id, EndpointV3State? state, CustomResourceOptions? opts = null)
public static EndpointV3 get(String name, Output<String> id, EndpointV3State state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Endpoint
Region string - The endpoint region. The
region
andendpoint_region
can be different. - Interface string
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- Name string
- The endpoint name.
- Region string
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used. - Service
Id string - The endpoint service ID.
- Service
Name string - The service name of the endpoint.
- Service
Type string - The service type of the endpoint.
- Url string
- The endpoint url.
- Endpoint
Region string - The endpoint region. The
region
andendpoint_region
can be different. - Interface string
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- Name string
- The endpoint name.
- Region string
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used. - Service
Id string - The endpoint service ID.
- Service
Name string - The service name of the endpoint.
- Service
Type string - The service type of the endpoint.
- Url string
- The endpoint url.
- endpoint
Region String - The endpoint region. The
region
andendpoint_region
can be different. - interface_ String
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name String
- The endpoint name.
- region String
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used. - service
Id String - The endpoint service ID.
- service
Name String - The service name of the endpoint.
- service
Type String - The service type of the endpoint.
- url String
- The endpoint url.
- endpoint
Region string - The endpoint region. The
region
andendpoint_region
can be different. - interface string
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name string
- The endpoint name.
- region string
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used. - service
Id string - The endpoint service ID.
- service
Name string - The service name of the endpoint.
- service
Type string - The service type of the endpoint.
- url string
- The endpoint url.
- endpoint_
region str - The endpoint region. The
region
andendpoint_region
can be different. - interface str
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name str
- The endpoint name.
- region str
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used. - service_
id str - The endpoint service ID.
- service_
name str - The service name of the endpoint.
- service_
type str - The service type of the endpoint.
- url str
- The endpoint url.
- endpoint
Region String - The endpoint region. The
region
andendpoint_region
can be different. - interface String
- The endpoint interface. Valid values are
public
,internal
andadmin
. Default value ispublic
- name String
- The endpoint name.
- region String
- The region in which to obtain the V3 Keystone client.
If omitted, the
region
argument of the provider is used. - service
Id String - The endpoint service ID.
- service
Name String - The service name of the endpoint.
- service
Type String - The service type of the endpoint.
- url String
- The endpoint url.
Import
Endpoints can be imported using the id
, e.g.
$ pulumi import openstack:identity/endpointV3:EndpointV3 endpoint_1 5392472b-106a-4845-90c6-7c8445f18770
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- OpenStack pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
openstack
Terraform Provider.