azure.storage.getEncryptionScope
Use this data source to access information about an existing Storage Encryption Scope.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleAccount = Azure.Storage.GetAccount.Invoke(new()
{
Name = "storageaccountname",
ResourceGroupName = "resourcegroupname",
});
var exampleEncryptionScope = Azure.Storage.GetEncryptionScope.Invoke(new()
{
Name = "existingStorageES",
StorageAccountId = exampleAccount.Apply(getAccountResult => getAccountResult.Id),
});
return new Dictionary<string, object?>
{
["id"] = exampleEncryptionScope.Apply(getEncryptionScopeResult => getEncryptionScopeResult.Id),
};
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleAccount, err := storage.LookupAccount(ctx, &storage.LookupAccountArgs{
Name: "storageaccountname",
ResourceGroupName: pulumi.StringRef("resourcegroupname"),
}, nil)
if err != nil {
return err
}
exampleEncryptionScope, err := storage.LookupEncryptionScope(ctx, &storage.LookupEncryptionScopeArgs{
Name: "existingStorageES",
StorageAccountId: exampleAccount.Id,
}, nil)
if err != nil {
return err
}
ctx.Export("id", exampleEncryptionScope.Id)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.storage.StorageFunctions;
import com.pulumi.azure.storage.inputs.GetAccountArgs;
import com.pulumi.azure.storage.inputs.GetEncryptionScopeArgs;
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 exampleAccount = StorageFunctions.getAccount(GetAccountArgs.builder()
.name("storageaccountname")
.resourceGroupName("resourcegroupname")
.build());
final var exampleEncryptionScope = StorageFunctions.getEncryptionScope(GetEncryptionScopeArgs.builder()
.name("existingStorageES")
.storageAccountId(exampleAccount.applyValue(getAccountResult -> getAccountResult.id()))
.build());
ctx.export("id", exampleEncryptionScope.applyValue(getEncryptionScopeResult -> getEncryptionScopeResult.id()));
}
}
import pulumi
import pulumi_azure as azure
example_account = azure.storage.get_account(name="storageaccountname",
resource_group_name="resourcegroupname")
example_encryption_scope = azure.storage.get_encryption_scope(name="existingStorageES",
storage_account_id=example_account.id)
pulumi.export("id", example_encryption_scope.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleAccount = azure.storage.getAccount({
name: "storageaccountname",
resourceGroupName: "resourcegroupname",
});
const exampleEncryptionScope = exampleAccount.then(exampleAccount => azure.storage.getEncryptionScope({
name: "existingStorageES",
storageAccountId: exampleAccount.id,
}));
export const id = exampleEncryptionScope.then(exampleEncryptionScope => exampleEncryptionScope.id);
variables:
exampleAccount:
fn::invoke:
Function: azure:storage:getAccount
Arguments:
name: storageaccountname
resourceGroupName: resourcegroupname
exampleEncryptionScope:
fn::invoke:
Function: azure:storage:getEncryptionScope
Arguments:
name: existingStorageES
storageAccountId: ${exampleAccount.id}
outputs:
id: ${exampleEncryptionScope.id}
Using getEncryptionScope
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 getEncryptionScope(args: GetEncryptionScopeArgs, opts?: InvokeOptions): Promise<GetEncryptionScopeResult>
function getEncryptionScopeOutput(args: GetEncryptionScopeOutputArgs, opts?: InvokeOptions): Output<GetEncryptionScopeResult>
def get_encryption_scope(name: Optional[str] = None,
storage_account_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEncryptionScopeResult
def get_encryption_scope_output(name: Optional[pulumi.Input[str]] = None,
storage_account_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEncryptionScopeResult]
func LookupEncryptionScope(ctx *Context, args *LookupEncryptionScopeArgs, opts ...InvokeOption) (*LookupEncryptionScopeResult, error)
func LookupEncryptionScopeOutput(ctx *Context, args *LookupEncryptionScopeOutputArgs, opts ...InvokeOption) LookupEncryptionScopeResultOutput
> Note: This function is named LookupEncryptionScope
in the Go SDK.
public static class GetEncryptionScope
{
public static Task<GetEncryptionScopeResult> InvokeAsync(GetEncryptionScopeArgs args, InvokeOptions? opts = null)
public static Output<GetEncryptionScopeResult> Invoke(GetEncryptionScopeInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetEncryptionScopeResult> getEncryptionScope(GetEncryptionScopeArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: azure:storage/getEncryptionScope:getEncryptionScope
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
The name of this Storage Encryption Scope.
- Storage
Account stringId The ID of the Storage Account where this Storage Encryption Scope exists.
- Name string
The name of this Storage Encryption Scope.
- Storage
Account stringId The ID of the Storage Account where this Storage Encryption Scope exists.
- name String
The name of this Storage Encryption Scope.
- storage
Account StringId The ID of the Storage Account where this Storage Encryption Scope exists.
- name string
The name of this Storage Encryption Scope.
- storage
Account stringId The ID of the Storage Account where this Storage Encryption Scope exists.
- name str
The name of this Storage Encryption Scope.
- storage_
account_ strid The ID of the Storage Account where this Storage Encryption Scope exists.
- name String
The name of this Storage Encryption Scope.
- storage
Account StringId The ID of the Storage Account where this Storage Encryption Scope exists.
getEncryptionScope Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Key
Vault stringKey Id The ID of the Key Vault Key.
- Name string
- Source string
The source of the Storage Encryption Scope.
- Storage
Account stringId
- Id string
The provider-assigned unique ID for this managed resource.
- Key
Vault stringKey Id The ID of the Key Vault Key.
- Name string
- Source string
The source of the Storage Encryption Scope.
- Storage
Account stringId
- id String
The provider-assigned unique ID for this managed resource.
- key
Vault StringKey Id The ID of the Key Vault Key.
- name String
- source String
The source of the Storage Encryption Scope.
- storage
Account StringId
- id string
The provider-assigned unique ID for this managed resource.
- key
Vault stringKey Id The ID of the Key Vault Key.
- name string
- source string
The source of the Storage Encryption Scope.
- storage
Account stringId
- id str
The provider-assigned unique ID for this managed resource.
- key_
vault_ strkey_ id The ID of the Key Vault Key.
- name str
- source str
The source of the Storage Encryption Scope.
- storage_
account_ strid
- id String
The provider-assigned unique ID for this managed resource.
- key
Vault StringKey Id The ID of the Key Vault Key.
- name String
- source String
The source of the Storage Encryption Scope.
- storage
Account StringId
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.