diff options
author | Spencer Jackson <spencer.jackson@mongodb.com> | 2020-01-28 09:40:38 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-02-11 01:35:42 +0000 |
commit | 6cc6194661eced3b02a5a853c382276bf258871c (patch) | |
tree | 6e453ede8a40c3d9d158bb849e4ff6903b91d646 /src/mongo/client/SConscript | |
parent | 0b73485f6dd17e52f5810229fa09ba6e406633c6 (diff) | |
download | mongo-6cc6194661eced3b02a5a853c382276bf258871c.tar.gz |
SERVER-45723 Rename IAM Auth mechanism to AWS
Diffstat (limited to 'src/mongo/client/SConscript')
-rw-r--r-- | src/mongo/client/SConscript | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mongo/client/SConscript b/src/mongo/client/SConscript index 8783166b59e..4d767b99135 100644 --- a/src/mongo/client/SConscript +++ b/src/mongo/client/SConscript @@ -42,10 +42,10 @@ env.Library( env.Library( target=[ - 'sasl_iam_common', + 'sasl_aws_common', ], source=[ - env.Idlc('sasl_iam_protocol_common.idl')[0], + env.Idlc('sasl_aws_protocol_common.idl')[0], ], LIBDEPS_PRIVATE=[ '$BUILD_DIR/mongo/base', @@ -60,18 +60,18 @@ kmsEnv.InjectThirdParty(libraries=['kms-message']) kmsEnv.Library( target=[ - 'sasl_iam_client', + 'sasl_aws_client', ], source=[ - 'sasl_iam_client_protocol.cpp', - env.Idlc('sasl_iam_client_protocol.idl')[0], + 'sasl_aws_client_protocol.cpp', + env.Idlc('sasl_aws_client_protocol.idl')[0], ], LIBDEPS_PRIVATE=[ '$BUILD_DIR/mongo/base', '$BUILD_DIR/third_party/shim_kms_message', '$BUILD_DIR/mongo/idl/idl_parser', '$BUILD_DIR/mongo/db/server_options_core', # For object_check.h - 'sasl_iam_common', + 'sasl_aws_common', ], ) @@ -89,8 +89,8 @@ saslClientSource = [ if get_option('ssl') == 'on': saslClientSource.extend([ - 'sasl_iam_client_conversation.cpp', - env.Idlc('sasl_iam_client_options.idl')[0], + 'sasl_aws_client_conversation.cpp', + env.Idlc('sasl_aws_client_options.idl')[0], ]) # Add in actual sasl dependencies if sasl is enabled, otherwise @@ -112,7 +112,7 @@ saslClientEnv.Library( target='sasl_client', source=saslClientSource, LIBDEPS=[ - "sasl_iam_client" if get_option('ssl') == 'on' else '', + "sasl_aws_client" if get_option('ssl') == 'on' else '', '$BUILD_DIR/mongo/base/secure_allocator', '$BUILD_DIR/mongo/bson/util/bson_extract', '$BUILD_DIR/mongo/executor/remote_command', |