cfnlego 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -0
- data/lib/cfnlego/resources/AWS/DirectoryService/SimpleAD.yaml +21 -0
- data/lib/cfnlego/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2916104dc6c7b8bddfc16c9d6027e7f8b2f7902f
|
|
4
|
+
data.tar.gz: 8ea2398354ae80065e495c11dc5f2c1ced68ad3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28a2ebcf47e34a62b32f7405658ab5d471d07397e2ca414dff161da18e19d6a09bd8cd59a8356781043db93c147545afb812afe5d53914489bae284215703aba
|
|
7
|
+
data.tar.gz: f80e44e23c6ebb292505246f42762d8a91d49f8db3a18b9dd63455f104704d1134d4c9e0c91eac1a8ce2cce6afd7df59c9bb2cde4a9eaff97b3cd40b4c229cf5
|
data/README.md
CHANGED
|
@@ -40,6 +40,8 @@ Example:
|
|
|
40
40
|
- AWS::AutoScaling::ScalingPolicy
|
|
41
41
|
- AWS::CloudFront::Distribution
|
|
42
42
|
- AWS::CloudWatch::Alarm
|
|
43
|
+
- AWS::CodeCommit::Repository
|
|
44
|
+
- AWS::DirectoryService::SimpleAD
|
|
43
45
|
- AWS::EC2::DHCPOptions
|
|
44
46
|
- AWS::EC2::EIP
|
|
45
47
|
- AWS::EC2::Instance
|
|
@@ -61,6 +63,9 @@ Example:
|
|
|
61
63
|
- AWS::ECS::Cluster
|
|
62
64
|
- AWS::ECS::Service
|
|
63
65
|
- AWS::ECS::TaskDefinition
|
|
66
|
+
- AWS::EMR::Cluster
|
|
67
|
+
- AWS::EMR::InstanceGroupConfig
|
|
68
|
+
- AWS::EMR::Step
|
|
64
69
|
- AWS::ElastiCache::CacheCluster
|
|
65
70
|
- AWS::ElastiCache::ParameterGroup
|
|
66
71
|
- AWS::ElastiCache::ReplicationGroup
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
AWS::DirectoryService::SimpleAD:
|
|
2
|
+
Properties:
|
|
3
|
+
CreateAlias: |
|
|
4
|
+
"A unique alias to assign to the directory. AWS Directory Service uses the alias to construct the access URL for the directory, such as http://alias.awsapps.com. By default, AWS CloudFormation does not create an alias."
|
|
5
|
+
Description: |
|
|
6
|
+
"A description of the directory."
|
|
7
|
+
EnableSso: |
|
|
8
|
+
"Whether to enable single sign-on for a directory. If you don't specify a value, AWS CloudFormation disables single sign-on by default."
|
|
9
|
+
Name: |
|
|
10
|
+
"The fully qualified name for the directory, such as corp.example.com."
|
|
11
|
+
Password: |
|
|
12
|
+
"The password for the directory administrator. AWS Directory Service creates a directory administrator account with the user name Administrator and this password."
|
|
13
|
+
ShortName: |
|
|
14
|
+
"The NetBIOS name of the on-premises directory, such as CORP."
|
|
15
|
+
Size: |
|
|
16
|
+
"Small | Large"
|
|
17
|
+
VpcSettings: |
|
|
18
|
+
{
|
|
19
|
+
"SubnetIds" => [ "sub-xwxkeidow", "sub-kxiuwqls"], # A list of two subnet IDs for the directory servers. Each subnet must be in different Availability Zones (AZ). AWS Directory Service creates a directory server and a DNS server in each subnet.
|
|
20
|
+
"VpcId" => "vpc-xksueixl"
|
|
21
|
+
}
|
data/lib/cfnlego/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfnlego
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Yung
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-beautify
|
|
@@ -98,6 +98,7 @@ files:
|
|
|
98
98
|
- lib/cfnlego/resources/AWS/CloudFront/Distribution.yaml
|
|
99
99
|
- lib/cfnlego/resources/AWS/CloudWatch/Alarm.yaml
|
|
100
100
|
- lib/cfnlego/resources/AWS/CodeCommit/Repository.yaml
|
|
101
|
+
- lib/cfnlego/resources/AWS/DirectoryService/SimpleAD.yaml
|
|
101
102
|
- lib/cfnlego/resources/AWS/EC2/DHCPOptions.yaml
|
|
102
103
|
- lib/cfnlego/resources/AWS/EC2/EIP.yaml
|
|
103
104
|
- lib/cfnlego/resources/AWS/EC2/Instance.yaml
|