Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/coverage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ capability the code does not implement. Machine-readable: [`coverage.json`](./co
| `relationaldb` | [Redshift](./aws/redshift.md) | [MySQLFlex](./azure/mysqlflex.md) | [AlloyDB](./gcp/alloydb.md) | — | 21 |
| `route53resolver` | [Route53Resolver](./aws/route53resolver.md) | — | — | — | 72 |
| `sagemaker` | [SageMaker](./aws/sagemaker.md) | — | — | — | 121 |
| `secrets` | [SecretsManager](./aws/secretsmanager.md) | [KeyVault](./azure/keyvault.md) | [SecretManager](./gcp/secretmanager.md) | | 7 |
| `secrets` | [SecretsManager](./aws/secretsmanager.md) | [KeyVault](./azure/keyvault.md) | [SecretManager](./gcp/secretmanager.md) | [Vault](./oci/vault.md) | 7 |
| `serverless` | [Lambda](./aws/lambda.md) | [Functions](./azure/functions.md) | [CloudFunctions](./gcp/cloudfunctions.md) | — | 27 |
| `sesv2` | [SESV2](./aws/sesv2.md) | — | — | — | 113 |
| `sfn` | [SFN](./aws/sfn.md) | — | — | — | 37 |
Expand Down
3 changes: 2 additions & 1 deletion docs/coverage/coverage.json
Original file line number Diff line number Diff line change
Expand Up @@ -8883,7 +8883,8 @@
"providers": {
"aws": "SecretsManager",
"azure": "KeyVault",
"gcp": "SecretManager"
"gcp": "SecretManager",
"oci": "Vault"
}
},
{
Expand Down
1 change: 1 addition & 0 deletions docs/coverage/oci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Services cloudemu emulates for OCI, by native name. Back to the [cross-provider
| [Identity](./identity.md) | `iam` | 40 |
| [Monitoring](./monitoring.md) | `monitoring` | 12 |
| [VCN](./vcn.md) | `networking` | 57 |
| [Vault](./vault.md) | `secrets` | 7 |
20 changes: 20 additions & 0 deletions docs/coverage/oci/vault.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- Generated by `go generate ./...` (internal/coveragegen). Do not edit by hand. -->
# Vault

OCI's `secrets` service · portable interface `driver.Secrets` · [OCI index](./README.md)

## Operations (7)

| Operation | Description |
| --- | --- |
| `CreateSecret` | |
| `DeleteSecret` | |
| `GetSecret` | |
| `GetSecretValue` | |
| `ListSecretVersions` | |
| `ListSecrets` | |
| `PutSecretValue` | |

## Not in scope

_Not documented yet. See the [emulator boundary](../../../README.md) for cloudemu-wide non-goals._
2 changes: 2 additions & 0 deletions providers/oci/oci.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"github.com/stackshy/cloudemu/v2/config"
"github.com/stackshy/cloudemu/v2/providers/oci/identity"
"github.com/stackshy/cloudemu/v2/providers/oci/monitoring"
vaultprovider "github.com/stackshy/cloudemu/v2/providers/oci/vault"
vcnprovider "github.com/stackshy/cloudemu/v2/providers/oci/vcn"
cachedriver "github.com/stackshy/cloudemu/v2/services/cache/driver"
computedriver "github.com/stackshy/cloudemu/v2/services/compute/driver"
Expand Down Expand Up @@ -75,6 +76,7 @@ func New(opts ...config.Option) *Provider {
}
p.Identity = identity.New(o)
p.VCN = vcnprovider.New(o)
p.Vault = vaultprovider.New(o)

p.Monitoring = monitoring.New(o)

Expand Down
Loading
Loading