Skip to content

Commit

Permalink
Merge pull request #1 from anudeepsharma/UpdatedSample
Browse files Browse the repository at this point in the history
Updated sample
  • Loading branch information
Martin Sawicki authored Oct 7, 2016
2 parents 9f0ba55 + 988c4b2 commit 82156a8
Show file tree
Hide file tree
Showing 7 changed files with 955 additions and 1 deletion.
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
*.class

# Auth filed
*.auth
*.azureauth

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

# Azure Tooling #
node_modules
packages

# Eclipse #
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# Other Tooling #
.classpath
.project
target
.idea
*.iml

# Mac OS #
.DS_Store
.DS_Store?

# Windows #
Thumbs.db

# reduced pom files should not be included
dependency-reduced-pom.xml
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Contributing to Azure samples

Thank you for your interest in contributing to Azure samples!

## Ways to contribute

You can contribute to [Azure samples](https://azure.microsoft.com/documentation/samples/) in a few different ways:

- Submit feedback on [this sample page](https://azure.microsoft.com/documentation/samples/key-vault-java-manage-key-vaults/) whether it was helpful or not.
- Submit issues through [issue tracker](https://github.com/Azure-Samples/key-vault-java-manage-key-vaults/issues) on GitHub. We are actively monitoring the issues and improving our samples.
- If you wish to make code changes to samples, or contribute something new, please follow the [GitHub Forks / Pull requests model](https://help.github.com/articles/fork-a-repo/): Fork the sample repo, make the change and propose it back by submitting a pull request.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 Microsoft Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
42 changes: 41 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,41 @@
# key-vault-java-manage-key-vaults
---
services: Keyvault
platforms: java
author: jianghaolu
---

#Getting Started with Keyvault - Manage Key Vault - in Java #


Azure Key Vault sample for managing key vaults -
- Create a key vault
- Authorize an application
- Update a key vault
- alter configurations
- change permissions
- Create another key vault
- List key vaults
- Delete a key vault.


## Running this Sample ##

To run this sample:

Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an auth file. See [how to create an auth file](https://github.com/Azure/azure-sdk-for-java/blob/master/AUTH.md).

git clone https://github.com/Azure-Samples/key-vault-java-manage-key-vaults.git

cd key-vault-java-manage-key-vaults

mvn clean compile exec:java

## More information ##

[http://azure.com/java] (http://azure.com/java)

If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)

---

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
66 changes: 66 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>key-vault-java-manage-key-vaults</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ManageKeyVault</name>
<description></description>
<url>https://github.com/Azure/key-vault-java-manage-key-vaults</url>
<dependencies>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure</artifactId>
<version>1.0.0-beta3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<mainClass>com.microsoft.azure.management.keyvault.samples.ManageKeyVault</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<!-- Generate a fully packaged executable jar with dependencies -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>attached</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.microsoft.azure.management.keyvault.samples.ManageKeyVault</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
/**
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
*/

package com.microsoft.azure.management.keyvault.samples;

import com.microsoft.azure.management.Azure;
import com.microsoft.azure.credentials.ApplicationTokenCredentials;
import com.microsoft.azure.management.keyvault.KeyPermissions;
import com.microsoft.azure.management.keyvault.SecretPermissions;
import com.microsoft.azure.management.keyvault.Vault;
import com.microsoft.azure.management.resources.fluentcore.arm.Region;
import com.microsoft.azure.management.resources.fluentcore.utils.ResourceNamer;
import com.microsoft.azure.management.samples.Utils;
import okhttp3.logging.HttpLoggingInterceptor;

import java.io.File;

/**
* Azure Key Vault sample for managing key vaults -
* - Create a key vault
* - Authorize an application
* - Update a key vault
* - alter configurations
* - change permissions
* - Create another key vault
* - List key vaults
* - Delete a key vault.
*/
public final class ManageKeyVault {

/**
* Main entry point.
* @param args the parameters
*/
public static void main(String[] args) {
final String vaultName1 = ResourceNamer.randomResourceName("vault1", 20);
final String vaultName2 = ResourceNamer.randomResourceName("vault2", 20);
final String rgName = ResourceNamer.randomResourceName("rgNEMV", 24);

try {

//=============================================================
// Authenticate

final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION"));

Azure azure = Azure
.configure()
.withLogLevel(HttpLoggingInterceptor.Level.BASIC)
.authenticate(credFile)
.withDefaultSubscription();

// Print selected subscription
System.out.println("Selected subscription: " + azure.subscriptionId());
try {


//============================================================
// Create a key vault with empty access policy

System.out.println("Creating a key vault...");

Vault vault1 = azure.vaults()
.define(vaultName1)
.withRegion(Region.US_WEST)
.withNewResourceGroup(rgName)
.withEmptyAccessPolicy()
.create();

System.out.println("Created key vault");
Utils.print(vault1);

//============================================================
// Authorize an application

System.out.println("Authorizing the application associated with the current service principal...");

vault1 = vault1.update()
.defineAccessPolicy()
.forServicePrincipal(ApplicationTokenCredentials.fromFile(credFile).getClientId())
.allowKeyAllPermissions()
.allowSecretPermissions(SecretPermissions.GET)
.allowSecretPermissions(SecretPermissions.LIST)
.attach()
.apply();

System.out.println("Updated key vault");
Utils.print(vault1);

//============================================================
// Update a key vault

System.out.println("Update a key vault to enable deployments and add permissions to the application...");

vault1 = vault1.update()
.withDeploymentEnabled()
.withTemplateDeploymentEnabled()
.updateAccessPolicy(vault1.accessPolicies().get(0).objectId())
.allowSecretAllPermissions()
.parent()
.apply();

System.out.println("Updated key vault");
// Print the network security group
Utils.print(vault1);


//============================================================
// Create another key vault

Vault vault2 = azure.vaults()
.define(vaultName2)
.withRegion(Region.US_EAST)
.withExistingResourceGroup(rgName)
.defineAccessPolicy()
.forServicePrincipal(ApplicationTokenCredentials.fromFile(credFile).getClientId())
.allowKeyPermissions(KeyPermissions.LIST)
.allowKeyPermissions(KeyPermissions.GET)
.allowKeyPermissions(KeyPermissions.DECRYPT)
.allowSecretPermissions(SecretPermissions.GET)
.attach()
.create();

System.out.println("Created key vault");
// Print the network security group
Utils.print(vault2);


//============================================================
// List key vaults

System.out.println("Listing key vaults...");

for (Vault vault : azure.vaults().listByGroup(rgName)) {
Utils.print(vault);
}

//============================================================
// Delete key vaults
System.out.println("Deleting the key vaults");
azure.vaults().delete(vault1.id());
azure.vaults().delete(vault2.id());
System.out.println("Deleted the key vaults");
} catch (Exception e) {
System.err.println(e.getMessage());
} finally {
try {
System.out.println("Deleting Resource Group: " + rgName);
azure.resourceGroups().delete(rgName);
System.out.println("Deleted Resource Group: " + rgName);
} catch (NullPointerException npe) {
System.out.println("Did not create any resources in Azure. No clean up is necessary");
} catch (Exception g) {
g.printStackTrace();
}
}

} catch (Exception e) {
System.out.println(e.getMessage());
e.printStackTrace();
}
}

private ManageKeyVault() {
}
}
Loading

0 comments on commit 82156a8

Please sign in to comment.