text changes windows to microsoft.
This commit is contained in:
Родитель
1ab1bb9a7c
Коммит
3f64175bb8
|
@ -1,4 +1,4 @@
|
|||
name 'msopentech-windowsazure'
|
||||
name 'msopentech-microsoftazure'
|
||||
version '1.2.0'
|
||||
source 'https://github.com/MSOpenTech/azure-puppet.git'
|
||||
author 'msopentech'
|
||||
|
|
12
manifest.md
12
manifest.md
|
@ -37,7 +37,7 @@ There are provided manifest files which are listed below, the parameters they us
|
|||
<p><strong>Enabling the puppet agent</strong><br />
|
||||
Bootstrap.pp allows you to create a new instance with Puppet already installed and configured. When using the class, the reference will be,
|
||||
|
||||
<pre><code>windowsazure::bootstrap</code></pre>
|
||||
<pre><code>microsoftazure::bootstrap</code></pre>
|
||||
|
||||
This manifest takes the following parameters.</p>
|
||||
|
||||
|
@ -56,7 +56,7 @@ $winrm_transport = 'http'</code></pre>
|
|||
<p><strong>Creating a database</strong><br />
|
||||
db.pp allows you to create a new instance of SQL server. When using the class, the reference will be,
|
||||
|
||||
<pre><code>windowsazure::db</code></pre>
|
||||
<pre><code>microsoftazure::db</code></pre>
|
||||
|
||||
This manifest takes the following parameters.</p>
|
||||
|
||||
|
@ -70,7 +70,7 @@ $location</code></pre>
|
|||
<p><strong>Creating a vm</strong><br />
|
||||
vm.pp allows you to create a new virtual machine instance. When using the class, the reference will be,
|
||||
|
||||
<pre><code>windowsazure::VM</code></pre>
|
||||
<pre><code>microsoftazure::VM</code></pre>
|
||||
|
||||
This manifest takes the following parameters.</p>
|
||||
|
||||
|
@ -93,7 +93,7 @@ $password = undef</code></pre>
|
|||
<p><strong>Creating a virtual network</strong><br />
|
||||
vnet.pp allows you to create a new virtual network instance. When using the class, the reference will be,
|
||||
|
||||
<pre><code>windowsazure::vnet</code></pre>
|
||||
<pre><code>microsoftazure::vnet</code></pre>
|
||||
|
||||
This manifest takes the following parameters.</p>
|
||||
|
||||
|
@ -109,7 +109,7 @@ $dns_servers = undef</code></pre>
|
|||
<p><strong>Creating a virtual network, sql db and virtual machine</strong><br />
|
||||
provisioner.pp allows you to create a new virtual network instance, sql db and virtual network. When using the class, the reference will be,
|
||||
|
||||
<pre><code>windowsazure::provisioner</code></pre>
|
||||
<pre><code>microsoftazure::provisioner</code></pre>
|
||||
|
||||
This manifest takes the following parameters.</p>
|
||||
|
||||
|
@ -145,7 +145,7 @@ $location</code></pre>
|
|||
<p><strong>Creating a cloud service</strong><br />
|
||||
cloudservice.pp allows you to create a new cloud service. When using the class, the reference will be,
|
||||
|
||||
<pre><code>windowsazure::cloudservice</code></pre>
|
||||
<pre><code>microsoftazure::cloudservice</code></pre>
|
||||
|
||||
This manifest takes the following parameters.</p>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::bootstrap (
|
||||
class microsoftazure::bootstrap (
|
||||
$puppet_master_ip,
|
||||
$node_ipaddress,
|
||||
$homedir = undef,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::cloudservice (
|
||||
class microsoftazure::cloudservice (
|
||||
$azure_management_certificate,
|
||||
$azure_subscription_id,
|
||||
$cloud_service_name,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::db (
|
||||
class microsoftazure::db (
|
||||
$azure_management_certificate,
|
||||
$azure_subscription_id,
|
||||
$login,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::provisioner (
|
||||
class microsoftazure::provisioner (
|
||||
# For windows azure authentication
|
||||
$azure_management_certificate,
|
||||
$azure_subscription_id,
|
||||
|
@ -51,7 +51,7 @@ class windowsazure::provisioner (
|
|||
}
|
||||
|
||||
if ($create_vm){
|
||||
class { 'windowsazure::vm':
|
||||
class { 'microsoftazure::vm':
|
||||
stage => final,
|
||||
azure_management_certificate => $azure_management_certificate,
|
||||
azure_subscription_id => $azure_subscription_id,
|
||||
|
@ -72,7 +72,7 @@ class windowsazure::provisioner (
|
|||
}
|
||||
|
||||
if ($create_vnet){
|
||||
class { 'windowsazure::vnet':
|
||||
class { 'microsoftazure::vnet':
|
||||
stage => prereqs,
|
||||
azure_management_certificate => $azure_management_certificate,
|
||||
azure_subscription_id => $azure_subscription_id,
|
||||
|
@ -85,7 +85,7 @@ class windowsazure::provisioner (
|
|||
}
|
||||
|
||||
if ($create_sqldb){
|
||||
class { 'windowsazure::db':
|
||||
class { 'microsoftazure::db':
|
||||
stage => middle,
|
||||
azure_management_certificate => $azure_management_certificate,
|
||||
azure_subscription_id => $azure_subscription_id,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::storage (
|
||||
class microsoftazure::storage (
|
||||
$azure_management_certificate,
|
||||
$azure_subscription_id,
|
||||
$storage_account_name,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::vm (
|
||||
class microsoftazure::vm (
|
||||
$vm_name,
|
||||
$vm_user,
|
||||
$image,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
class windowsazure::vnet (
|
||||
class microsoftazure::vnet (
|
||||
$azure_management_certificate,
|
||||
$azure_subscription_id,
|
||||
$virtual_network_name,
|
||||
|
|
Загрузка…
Ссылка в новой задаче