-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Allow updating cf stack in Makefile * Allow kitchen to tag volumes * Explicitly set security group for kitchen * Make mkhomedir check work on serverspec for both ubuntu and EL Ubuntu uses /etc/pam.d/common-session, RHEL puts mkhomedir directly in /etc/pam.d/system-auth. Find first that exists and examine that. * Update ChefDK to 2.4.17
- Loading branch information
1 parent
36d963d
commit 4d07356
Showing
7 changed files
with
43 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,46 @@ | ||
{ | ||
"Stacks": [ | ||
{ | ||
"LastUpdatedTime": "2018-02-21T22:45:32.818Z", | ||
"StackId": "arn:aws:cloudformation:us-east-1:188945769008:stack/test-kitchen/b75d7840-1560-11e8-abc1-50a686e4bb1e", | ||
"StackStatus": "CREATE_COMPLETE", | ||
"CreationTime": "2018-02-19T10:36:17.228Z", | ||
"NotificationARNs": [], | ||
"Tags": [ | ||
{ | ||
"Value": "test-kitchen", | ||
"Key": "Name" | ||
} | ||
], | ||
"StackName": "test-kitchen", | ||
"Outputs": [ | ||
{ | ||
"OutputValue": "test-kitchen-kitchenuser-J88EB50R59KD", | ||
"OutputKey": "UserName" | ||
"OutputKey": "UserName", | ||
"OutputValue": "test-kitchen-kitchenuser-J88EB50R59KD" | ||
}, | ||
{ | ||
"OutputKey": "SecurityGroupId", | ||
"OutputValue": "sg-a483a1d3" | ||
}, | ||
{ | ||
"OutputValue": "subnet-d0a7edef", | ||
"OutputKey": "SubnetId" | ||
"OutputKey": "SubnetId", | ||
"OutputValue": "subnet-d0a7edef" | ||
} | ||
], | ||
"Capabilities": [ | ||
"CAPABILITY_IAM" | ||
], | ||
"DisableRollback": false, | ||
"NotificationARNs": [], | ||
"Parameters": [ | ||
{ | ||
"ParameterValue": "test-kitchen", | ||
"ParameterKey": "KeyPair" | ||
"ParameterKey": "KeyPair", | ||
"ParameterValue": "test-kitchen" | ||
}, | ||
{ | ||
"ParameterValue": "10.107.116.0/24", | ||
"ParameterKey": "VpcCidr" | ||
"ParameterKey": "VpcCidr", | ||
"ParameterValue": "10.107.116.0/24" | ||
} | ||
] | ||
], | ||
"Capabilities": [ | ||
"CAPABILITY_IAM" | ||
], | ||
"StackName": "test-kitchen", | ||
"DisableRollback": false, | ||
"StackStatus": "UPDATE_COMPLETE", | ||
"CreationTime": "2018-02-19T10:36:17.228Z" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters