index.html 296 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270152711527215273152741527515276152771527815279152801528115282152831528415285152861528715288152891529015291152921529315294152951529615297152981529915300153011530215303153041530515306153071530815309153101531115312153131531415315153161531715318153191532015321153221532315324153251532615327153281532915330153311533215333153341533515336153371533815339153401534115342153431534415345153461534715348153491535015351153521535315354153551535615357153581535915360153611536215363153641536515366153671536815369153701537115372153731537415375153761537715378153791538015381153821538315384153851538615387153881538915390153911539215393153941539515396153971539815399154001540115402154031540415405154061540715408154091541015411154121541315414154151541615417154181541915420154211542215423154241542515426154271542815429154301543115432154331543415435154361543715438154391544015441154421544315444154451544615447154481544915450154511545215453154541545515456154571545815459154601546115462154631546415465154661546715468154691547015471154721547315474154751547615477154781547915480154811548215483154841548515486154871548815489154901549115492154931549415495154961549715498154991550015501155021550315504155051550615507155081550915510155111551215513155141551515516155171551815519155201552115522155231552415525155261552715528155291553015531155321553315534155351553615537155381553915540155411554215543155441554515546155471554815549155501555115552155531555415555155561555715558155591556015561155621556315564155651556615567155681556915570155711557215573155741557515576155771557815579155801558115582155831558415585155861558715588155891559015591155921559315594155951559615597155981559915600156011560215603156041560515606156071560815609156101561115612156131561415615156161561715618156191562015621156221562315624156251562615627156281562915630156311563215633156341563515636156371563815639156401564115642156431564415645156461564715648156491565015651156521565315654156551565615657156581565915660156611566215663156641566515666156671566815669156701567115672156731567415675156761567715678156791568015681156821568315684156851568615687156881568915690156911569215693156941569515696156971569815699157001570115702157031570415705157061570715708157091571015711157121571315714157151571615717157181571915720157211572215723157241572515726157271572815729157301573115732157331573415735157361573715738157391574015741157421574315744157451574615747157481574915750157511575215753157541575515756157571575815759157601576115762157631576415765157661576715768157691577015771157721577315774157751577615777157781577915780157811578215783157841578515786157871578815789157901579115792157931579415795157961579715798157991580015801158021580315804158051580615807158081580915810158111581215813158141581515816158171581815819158201582115822158231582415825158261582715828158291583015831158321583315834158351583615837158381583915840158411584215843158441584515846158471584815849158501585115852158531585415855158561585715858158591586015861158621586315864158651586615867158681586915870158711587215873158741587515876158771587815879158801588115882158831588415885158861588715888158891589015891158921589315894158951589615897158981589915900159011590215903159041590515906159071590815909159101591115912159131591415915159161591715918159191592015921159221592315924159251592615927159281592915930159311593215933159341593515936159371593815939159401594115942159431594415945159461594715948159491595015951159521595315954159551595615957159581595915960159611596215963159641596515966159671596815969159701597115972159731597415975159761597715978159791598015981159821598315984159851598615987159881598915990159911599215993159941599515996159971599815999160001600116002160031600416005160061600716008160091601016011160121601316014160151601616017160181601916020160211602216023160241602516026160271602816029160301603116032160331603416035160361603716038160391604016041160421604316044160451604616047160481604916050160511605216053160541605516056160571605816059160601606116062160631606416065160661606716068160691607016071160721607316074160751607616077160781607916080160811608216083160841608516086160871608816089160901609116092160931609416095160961609716098160991610016101161021610316104161051610616107161081610916110161111611216113161141611516116161171611816119161201612116122161231612416125161261612716128161291613016131161321613316134161351613616137161381613916140161411614216143161441614516146161471614816149161501615116152161531615416155161561615716158161591616016161161621616316164161651616616167161681616916170161711617216173161741617516176161771617816179161801618116182161831618416185
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/sshkey/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.23">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.84d31ad4.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cloudsmith/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cloudsmith
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/cluster/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Cluster Generator
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/gcr/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Google Container Registry
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/quay/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Quay
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/vault/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Vault Dynamic Secret
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/password/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Password
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/fake/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Fake
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/webhook/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Webhook
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/github/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. Github
  423. </span>
  424. </a>
  425. </li>
  426. <li class="md-nav__item">
  427. <a href="../generator/uuid/" class="md-nav__link">
  428. <span class="md-ellipsis">
  429. UUID
  430. </span>
  431. </a>
  432. </li>
  433. <li class="md-nav__item">
  434. <a href="../generator/mfa/" class="md-nav__link">
  435. <span class="md-ellipsis">
  436. MFA
  437. </span>
  438. </a>
  439. </li>
  440. <li class="md-nav__item">
  441. <a href="../generator/sshkey/" class="md-nav__link">
  442. <span class="md-ellipsis">
  443. SSHKey
  444. </span>
  445. </a>
  446. </li>
  447. </ul>
  448. </nav>
  449. </li>
  450. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  451. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  452. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  453. <span class="md-ellipsis">
  454. Reference Docs
  455. </span>
  456. <span class="md-nav__icon md-icon"></span>
  457. </label>
  458. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  459. <label class="md-nav__title" for="__nav_2_4">
  460. <span class="md-nav__icon md-icon"></span>
  461. Reference Docs
  462. </label>
  463. <ul class="md-nav__list" data-md-scrollfix>
  464. <li class="md-nav__item md-nav__item--active">
  465. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  466. <a href="./" class="md-nav__link md-nav__link--active">
  467. <span class="md-ellipsis">
  468. API specification
  469. </span>
  470. </a>
  471. </li>
  472. <li class="md-nav__item">
  473. <a href="../controller-options/" class="md-nav__link">
  474. <span class="md-ellipsis">
  475. Controller Options
  476. </span>
  477. </a>
  478. </li>
  479. <li class="md-nav__item">
  480. <a href="../metrics/" class="md-nav__link">
  481. <span class="md-ellipsis">
  482. Metrics
  483. </span>
  484. </a>
  485. </li>
  486. <li class="md-nav__item">
  487. <a href="../selectable-fields/" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. Selectable Fields
  490. </span>
  491. </a>
  492. </li>
  493. </ul>
  494. </nav>
  495. </li>
  496. </ul>
  497. </nav>
  498. </li>
  499. <li class="md-nav__item md-nav__item--nested">
  500. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  501. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  502. <span class="md-ellipsis">
  503. Guides
  504. </span>
  505. <span class="md-nav__icon md-icon"></span>
  506. </label>
  507. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  508. <label class="md-nav__title" for="__nav_3">
  509. <span class="md-nav__icon md-icon"></span>
  510. Guides
  511. </label>
  512. <ul class="md-nav__list" data-md-scrollfix>
  513. <li class="md-nav__item">
  514. <a href="../../guides/introduction/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Introduction
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item md-nav__item--nested">
  521. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  522. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  523. <span class="md-ellipsis">
  524. External Secrets
  525. </span>
  526. <span class="md-nav__icon md-icon"></span>
  527. </label>
  528. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  529. <label class="md-nav__title" for="__nav_3_2">
  530. <span class="md-nav__icon md-icon"></span>
  531. External Secrets
  532. </label>
  533. <ul class="md-nav__list" data-md-scrollfix>
  534. <li class="md-nav__item">
  535. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Extract structured data
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="../../guides/getallsecrets/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. Find Secrets by Name or Metadata
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item">
  549. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. Rewriting Keys
  552. </span>
  553. </a>
  554. </li>
  555. <li class="md-nav__item md-nav__item--nested">
  556. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  557. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  558. <span class="md-ellipsis">
  559. Advanced Templating
  560. </span>
  561. <span class="md-nav__icon md-icon"></span>
  562. </label>
  563. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  564. <label class="md-nav__title" for="__nav_3_2_4">
  565. <span class="md-nav__icon md-icon"></span>
  566. Advanced Templating
  567. </label>
  568. <ul class="md-nav__list" data-md-scrollfix>
  569. <li class="md-nav__item">
  570. <a href="../../guides/templating/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. v2
  573. </span>
  574. </a>
  575. </li>
  576. <li class="md-nav__item">
  577. <a href="../../guides/templating-v1/" class="md-nav__link">
  578. <span class="md-ellipsis">
  579. v1
  580. </span>
  581. </a>
  582. </li>
  583. </ul>
  584. </nav>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Kubernetes Secret Types
  590. </span>
  591. </a>
  592. </li>
  593. <li class="md-nav__item">
  594. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  595. <span class="md-ellipsis">
  596. Lifecycle: ownership & deletion
  597. </span>
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  602. <span class="md-ellipsis">
  603. Decoding Strategies
  604. </span>
  605. </a>
  606. </li>
  607. <li class="md-nav__item">
  608. <a href="../../guides/controller-class/" class="md-nav__link">
  609. <span class="md-ellipsis">
  610. Controller Classes
  611. </span>
  612. </a>
  613. </li>
  614. </ul>
  615. </nav>
  616. </li>
  617. <li class="md-nav__item">
  618. <a href="../../guides/targeting-custom-resources/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. Targeting Custom Resources
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item">
  625. <a href="../../guides/generator/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Generators
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../guides/pushsecrets/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Push Secrets
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item md-nav__item--nested">
  639. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  640. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  641. <span class="md-ellipsis">
  642. Operations
  643. </span>
  644. <span class="md-nav__icon md-icon"></span>
  645. </label>
  646. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  647. <label class="md-nav__title" for="__nav_3_6">
  648. <span class="md-nav__icon md-icon"></span>
  649. Operations
  650. </label>
  651. <ul class="md-nav__list" data-md-scrollfix>
  652. <li class="md-nav__item">
  653. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Multi Tenancy
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/security-best-practices/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Security Best Practices
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../guides/threat-model/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. Threat Model
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../guides/v1beta1/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. Upgrading to v1beta1
  677. </span>
  678. </a>
  679. </li>
  680. <li class="md-nav__item">
  681. <a href="../../guides/using-latest-image/" class="md-nav__link">
  682. <span class="md-ellipsis">
  683. Using Latest Image
  684. </span>
  685. </a>
  686. </li>
  687. <li class="md-nav__item">
  688. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  689. <span class="md-ellipsis">
  690. Disable Cluster Features
  691. </span>
  692. </a>
  693. </li>
  694. </ul>
  695. </nav>
  696. </li>
  697. <li class="md-nav__item md-nav__item--nested">
  698. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_7" >
  699. <label class="md-nav__link" for="__nav_3_7" id="__nav_3_7_label" tabindex="0">
  700. <span class="md-ellipsis">
  701. Tooling
  702. </span>
  703. <span class="md-nav__icon md-icon"></span>
  704. </label>
  705. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_7_label" aria-expanded="false">
  706. <label class="md-nav__title" for="__nav_3_7">
  707. <span class="md-nav__icon md-icon"></span>
  708. Tooling
  709. </label>
  710. <ul class="md-nav__list" data-md-scrollfix>
  711. <li class="md-nav__item">
  712. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  713. <span class="md-ellipsis">
  714. Using the esoctl tool
  715. </span>
  716. </a>
  717. </li>
  718. </ul>
  719. </nav>
  720. </li>
  721. </ul>
  722. </nav>
  723. </li>
  724. <li class="md-nav__item md-nav__item--nested">
  725. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  726. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  727. <span class="md-ellipsis">
  728. Provider
  729. </span>
  730. <span class="md-nav__icon md-icon"></span>
  731. </label>
  732. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  733. <label class="md-nav__title" for="__nav_4">
  734. <span class="md-nav__icon md-icon"></span>
  735. Provider
  736. </label>
  737. <ul class="md-nav__list" data-md-scrollfix>
  738. <li class="md-nav__item">
  739. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. AWS Secrets Manager
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. AWS Parameter Store
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Azure Key Vault
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/beyondtrust/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. BeyondTrust
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Bitwarden Secrets Manager
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/chef/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. Chef
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/cloudru/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. Cloud.ru Secret Manager
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/conjur/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. CyberArk Conjur
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/device42/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. Device42
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Google Cloud Secret Manager
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. HashiCorp Vault
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/kubernetes/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Kubernetes
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. IBM Secrets Manager
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/akeyless/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. Akeyless
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Yandex Certificate Manager
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. Yandex Lockbox
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/alibaba/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. Alibaba Cloud
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. GitLab Variables
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/github/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. Github Actions Secrets
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/oracle-vault/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. Oracle Vault
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/1password-automation/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. 1Password Connect Server
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/1password-sdk/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. 1Password SDK
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/webhook/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Webhook
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/fake/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Fake
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. senhasegura DevOps Secrets Management (DSM)
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/doppler/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Doppler
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/keeper-security/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Keeper Security
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/cloak/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Cloak End 2 End Encrypted Secrets
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/scaleway/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Scaleway
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/delinea/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Delinea
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider/secretserver/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Secret Server
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/passbolt/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Passbolt
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider/pulumi/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Pulumi ESC
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/onboardbase/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Onboardbase
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider-passworddepot/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. Password Depot
  980. </span>
  981. </a>
  982. </li>
  983. <li class="md-nav__item">
  984. <a href="../../provider/fortanix/" class="md-nav__link">
  985. <span class="md-ellipsis">
  986. Fortanix
  987. </span>
  988. </a>
  989. </li>
  990. <li class="md-nav__item">
  991. <a href="../../provider/infisical/" class="md-nav__link">
  992. <span class="md-ellipsis">
  993. Infisical
  994. </span>
  995. </a>
  996. </li>
  997. <li class="md-nav__item">
  998. <a href="../../provider/previder/" class="md-nav__link">
  999. <span class="md-ellipsis">
  1000. Previder
  1001. </span>
  1002. </a>
  1003. </li>
  1004. <li class="md-nav__item">
  1005. <a href="../../provider/openbao/" class="md-nav__link">
  1006. <span class="md-ellipsis">
  1007. OpenBao
  1008. </span>
  1009. </a>
  1010. </li>
  1011. <li class="md-nav__item">
  1012. <a href="../../provider/volcengine/" class="md-nav__link">
  1013. <span class="md-ellipsis">
  1014. Volcengine
  1015. </span>
  1016. </a>
  1017. </li>
  1018. <li class="md-nav__item">
  1019. <a href="../../provider/ngrok/" class="md-nav__link">
  1020. <span class="md-ellipsis">
  1021. ngrok
  1022. </span>
  1023. </a>
  1024. </li>
  1025. </ul>
  1026. </nav>
  1027. </li>
  1028. <li class="md-nav__item md-nav__item--nested">
  1029. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  1030. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  1031. <span class="md-ellipsis">
  1032. Examples
  1033. </span>
  1034. <span class="md-nav__icon md-icon"></span>
  1035. </label>
  1036. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  1037. <label class="md-nav__title" for="__nav_5">
  1038. <span class="md-nav__icon md-icon"></span>
  1039. Examples
  1040. </label>
  1041. <ul class="md-nav__list" data-md-scrollfix>
  1042. <li class="md-nav__item">
  1043. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1044. <span class="md-ellipsis">
  1045. FluxCD
  1046. </span>
  1047. </a>
  1048. </li>
  1049. <li class="md-nav__item">
  1050. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1051. <span class="md-ellipsis">
  1052. Anchore Engine
  1053. </span>
  1054. </a>
  1055. </li>
  1056. <li class="md-nav__item">
  1057. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1058. <span class="md-ellipsis">
  1059. Jenkins
  1060. </span>
  1061. </a>
  1062. </li>
  1063. <li class="md-nav__item">
  1064. <a href="../../examples/bitwarden/" class="md-nav__link">
  1065. <span class="md-ellipsis">
  1066. Bitwarden
  1067. </span>
  1068. </a>
  1069. </li>
  1070. </ul>
  1071. </nav>
  1072. </li>
  1073. <li class="md-nav__item md-nav__item--nested">
  1074. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1075. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1076. <span class="md-ellipsis">
  1077. Community
  1078. </span>
  1079. <span class="md-nav__icon md-icon"></span>
  1080. </label>
  1081. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1082. <label class="md-nav__title" for="__nav_6">
  1083. <span class="md-nav__icon md-icon"></span>
  1084. Community
  1085. </label>
  1086. <ul class="md-nav__list" data-md-scrollfix>
  1087. <li class="md-nav__item md-nav__item--nested">
  1088. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1089. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1090. <span class="md-ellipsis">
  1091. Contributing
  1092. </span>
  1093. <span class="md-nav__icon md-icon"></span>
  1094. </label>
  1095. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1096. <label class="md-nav__title" for="__nav_6_1">
  1097. <span class="md-nav__icon md-icon"></span>
  1098. Contributing
  1099. </label>
  1100. <ul class="md-nav__list" data-md-scrollfix>
  1101. <li class="md-nav__item">
  1102. <a href="../../contributing/devguide/" class="md-nav__link">
  1103. <span class="md-ellipsis">
  1104. Developer guide
  1105. </span>
  1106. </a>
  1107. </li>
  1108. <li class="md-nav__item">
  1109. <a href="../../contributing/process/" class="md-nav__link">
  1110. <span class="md-ellipsis">
  1111. Contributing Process
  1112. </span>
  1113. </a>
  1114. </li>
  1115. <li class="md-nav__item">
  1116. <a href="../../contributing/release/" class="md-nav__link">
  1117. <span class="md-ellipsis">
  1118. Release Process
  1119. </span>
  1120. </a>
  1121. </li>
  1122. <li class="md-nav__item">
  1123. <a href="../../contributing/coc/" class="md-nav__link">
  1124. <span class="md-ellipsis">
  1125. Code of Conduct
  1126. </span>
  1127. </a>
  1128. </li>
  1129. <li class="md-nav__item">
  1130. <a href="../../contributing/calendar/" class="md-nav__link">
  1131. <span class="md-ellipsis">
  1132. Community meetings calendar
  1133. </span>
  1134. </a>
  1135. </li>
  1136. <li class="md-nav__item">
  1137. <a href="../../contributing/roadmap/" class="md-nav__link">
  1138. <span class="md-ellipsis">
  1139. Roadmap
  1140. </span>
  1141. </a>
  1142. </li>
  1143. <li class="md-nav__item">
  1144. <a href="../../contributing/burnout-mitigation/" class="md-nav__link">
  1145. <span class="md-ellipsis">
  1146. Burnout Prevention
  1147. </span>
  1148. </a>
  1149. </li>
  1150. </ul>
  1151. </nav>
  1152. </li>
  1153. <li class="md-nav__item md-nav__item--nested">
  1154. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1155. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1156. <span class="md-ellipsis">
  1157. External Resources
  1158. </span>
  1159. <span class="md-nav__icon md-icon"></span>
  1160. </label>
  1161. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1162. <label class="md-nav__title" for="__nav_6_2">
  1163. <span class="md-nav__icon md-icon"></span>
  1164. External Resources
  1165. </label>
  1166. <ul class="md-nav__list" data-md-scrollfix>
  1167. <li class="md-nav__item">
  1168. <a href="../../eso-talks/" class="md-nav__link">
  1169. <span class="md-ellipsis">
  1170. Talks
  1171. </span>
  1172. </a>
  1173. </li>
  1174. <li class="md-nav__item">
  1175. <a href="../../eso-demos/" class="md-nav__link">
  1176. <span class="md-ellipsis">
  1177. Demos
  1178. </span>
  1179. </a>
  1180. </li>
  1181. <li class="md-nav__item">
  1182. <a href="../../eso-blogs/" class="md-nav__link">
  1183. <span class="md-ellipsis">
  1184. Blogs
  1185. </span>
  1186. </a>
  1187. </li>
  1188. <li class="md-nav__item">
  1189. <a href="../../eso-tools/" class="md-nav__link">
  1190. <span class="md-ellipsis">
  1191. Tools
  1192. </span>
  1193. </a>
  1194. </li>
  1195. </ul>
  1196. </nav>
  1197. </li>
  1198. </ul>
  1199. </nav>
  1200. </li>
  1201. </ul>
  1202. </nav>
  1203. </div>
  1204. </div>
  1205. </div>
  1206. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1207. <div class="md-sidebar__scrollwrap">
  1208. <div class="md-sidebar__inner">
  1209. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1210. </nav>
  1211. </div>
  1212. </div>
  1213. </div>
  1214. <div class="md-content" data-md-component="content">
  1215. <article class="md-content__inner md-typeset">
  1216. <h1>API specification</h1>
  1217. <p>Packages:</p>
  1218. <ul>
  1219. <li>
  1220. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1221. </li>
  1222. </ul>
  1223. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1224. <p>
  1225. <p>Package v1 contains resources for external-secrets</p>
  1226. </p>
  1227. <p>Resource Types:</p>
  1228. <ul></ul>
  1229. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1230. </h3>
  1231. <p>
  1232. (<em>Appears on:</em>
  1233. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1234. </p>
  1235. <p>
  1236. <p>AWSAuth tells the controller how to do authentication with aws.
  1237. Only one of secretRef or jwt can be specified.
  1238. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1239. </p>
  1240. <table>
  1241. <thead>
  1242. <tr>
  1243. <th>Field</th>
  1244. <th>Description</th>
  1245. </tr>
  1246. </thead>
  1247. <tbody>
  1248. <tr>
  1249. <td>
  1250. <code>secretRef</code></br>
  1251. <em>
  1252. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1253. AWSAuthSecretRef
  1254. </a>
  1255. </em>
  1256. </td>
  1257. <td>
  1258. <em>(Optional)</em>
  1259. </td>
  1260. </tr>
  1261. <tr>
  1262. <td>
  1263. <code>jwt</code></br>
  1264. <em>
  1265. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1266. AWSJWTAuth
  1267. </a>
  1268. </em>
  1269. </td>
  1270. <td>
  1271. <em>(Optional)</em>
  1272. </td>
  1273. </tr>
  1274. </tbody>
  1275. </table>
  1276. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1277. </h3>
  1278. <p>
  1279. (<em>Appears on:</em>
  1280. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1281. </p>
  1282. <p>
  1283. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1284. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1285. </p>
  1286. <table>
  1287. <thead>
  1288. <tr>
  1289. <th>Field</th>
  1290. <th>Description</th>
  1291. </tr>
  1292. </thead>
  1293. <tbody>
  1294. <tr>
  1295. <td>
  1296. <code>accessKeyIDSecretRef</code></br>
  1297. <em>
  1298. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1299. External Secrets meta/v1.SecretKeySelector
  1300. </a>
  1301. </em>
  1302. </td>
  1303. <td>
  1304. <p>The AccessKeyID is used for authentication</p>
  1305. </td>
  1306. </tr>
  1307. <tr>
  1308. <td>
  1309. <code>secretAccessKeySecretRef</code></br>
  1310. <em>
  1311. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1312. External Secrets meta/v1.SecretKeySelector
  1313. </a>
  1314. </em>
  1315. </td>
  1316. <td>
  1317. <p>The SecretAccessKey is used for authentication</p>
  1318. </td>
  1319. </tr>
  1320. <tr>
  1321. <td>
  1322. <code>sessionTokenSecretRef</code></br>
  1323. <em>
  1324. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1325. External Secrets meta/v1.SecretKeySelector
  1326. </a>
  1327. </em>
  1328. </td>
  1329. <td>
  1330. <p>The SessionToken used for authentication
  1331. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1332. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1333. </td>
  1334. </tr>
  1335. </tbody>
  1336. </table>
  1337. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1338. </h3>
  1339. <p>
  1340. (<em>Appears on:</em>
  1341. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1342. </p>
  1343. <p>
  1344. <p>AWSJWTAuth stores reference to Authenticate against AWS using service account tokens.</p>
  1345. </p>
  1346. <table>
  1347. <thead>
  1348. <tr>
  1349. <th>Field</th>
  1350. <th>Description</th>
  1351. </tr>
  1352. </thead>
  1353. <tbody>
  1354. <tr>
  1355. <td>
  1356. <code>serviceAccountRef</code></br>
  1357. <em>
  1358. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1359. External Secrets meta/v1.ServiceAccountSelector
  1360. </a>
  1361. </em>
  1362. </td>
  1363. <td>
  1364. </td>
  1365. </tr>
  1366. </tbody>
  1367. </table>
  1368. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1369. </h3>
  1370. <p>
  1371. (<em>Appears on:</em>
  1372. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1373. </p>
  1374. <p>
  1375. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1376. </p>
  1377. <table>
  1378. <thead>
  1379. <tr>
  1380. <th>Field</th>
  1381. <th>Description</th>
  1382. </tr>
  1383. </thead>
  1384. <tbody>
  1385. <tr>
  1386. <td>
  1387. <code>service</code></br>
  1388. <em>
  1389. <a href="#external-secrets.io/v1.AWSServiceType">
  1390. AWSServiceType
  1391. </a>
  1392. </em>
  1393. </td>
  1394. <td>
  1395. <p>Service defines which service should be used to fetch the secrets</p>
  1396. </td>
  1397. </tr>
  1398. <tr>
  1399. <td>
  1400. <code>auth</code></br>
  1401. <em>
  1402. <a href="#external-secrets.io/v1.AWSAuth">
  1403. AWSAuth
  1404. </a>
  1405. </em>
  1406. </td>
  1407. <td>
  1408. <em>(Optional)</em>
  1409. <p>Auth defines the information necessary to authenticate against AWS
  1410. if not set aws sdk will infer credentials from your environment
  1411. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1412. </td>
  1413. </tr>
  1414. <tr>
  1415. <td>
  1416. <code>role</code></br>
  1417. <em>
  1418. string
  1419. </em>
  1420. </td>
  1421. <td>
  1422. <em>(Optional)</em>
  1423. <p>Role is a Role ARN which the provider will assume</p>
  1424. </td>
  1425. </tr>
  1426. <tr>
  1427. <td>
  1428. <code>region</code></br>
  1429. <em>
  1430. string
  1431. </em>
  1432. </td>
  1433. <td>
  1434. <p>AWS Region to be used for the provider</p>
  1435. </td>
  1436. </tr>
  1437. <tr>
  1438. <td>
  1439. <code>additionalRoles</code></br>
  1440. <em>
  1441. []string
  1442. </em>
  1443. </td>
  1444. <td>
  1445. <em>(Optional)</em>
  1446. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1447. </td>
  1448. </tr>
  1449. <tr>
  1450. <td>
  1451. <code>externalID</code></br>
  1452. <em>
  1453. string
  1454. </em>
  1455. </td>
  1456. <td>
  1457. <p>AWS External ID set on assumed IAM roles</p>
  1458. </td>
  1459. </tr>
  1460. <tr>
  1461. <td>
  1462. <code>sessionTags</code></br>
  1463. <em>
  1464. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1465. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1466. </a>
  1467. </em>
  1468. </td>
  1469. <td>
  1470. <em>(Optional)</em>
  1471. <p>AWS STS assume role session tags</p>
  1472. </td>
  1473. </tr>
  1474. <tr>
  1475. <td>
  1476. <code>secretsManager</code></br>
  1477. <em>
  1478. <a href="#external-secrets.io/v1.SecretsManager">
  1479. SecretsManager
  1480. </a>
  1481. </em>
  1482. </td>
  1483. <td>
  1484. <em>(Optional)</em>
  1485. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1486. </td>
  1487. </tr>
  1488. <tr>
  1489. <td>
  1490. <code>transitiveTagKeys</code></br>
  1491. <em>
  1492. []string
  1493. </em>
  1494. </td>
  1495. <td>
  1496. <em>(Optional)</em>
  1497. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1498. </td>
  1499. </tr>
  1500. <tr>
  1501. <td>
  1502. <code>prefix</code></br>
  1503. <em>
  1504. string
  1505. </em>
  1506. </td>
  1507. <td>
  1508. <em>(Optional)</em>
  1509. <p>Prefix adds a prefix to all retrieved values.</p>
  1510. </td>
  1511. </tr>
  1512. </tbody>
  1513. </table>
  1514. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1515. (<code>string</code> alias)</p></h3>
  1516. <p>
  1517. (<em>Appears on:</em>
  1518. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1519. </p>
  1520. <p>
  1521. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1522. </p>
  1523. <table>
  1524. <thead>
  1525. <tr>
  1526. <th>Value</th>
  1527. <th>Description</th>
  1528. </tr>
  1529. </thead>
  1530. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1531. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1532. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1533. </td>
  1534. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1535. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1536. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1537. </td>
  1538. </tr></tbody>
  1539. </table>
  1540. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1541. </h3>
  1542. <p>
  1543. (<em>Appears on:</em>
  1544. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1545. </p>
  1546. <p>
  1547. <p>AkeylessAuth configures how the operator authenticates with Akeyless.</p>
  1548. </p>
  1549. <table>
  1550. <thead>
  1551. <tr>
  1552. <th>Field</th>
  1553. <th>Description</th>
  1554. </tr>
  1555. </thead>
  1556. <tbody>
  1557. <tr>
  1558. <td>
  1559. <code>secretRef</code></br>
  1560. <em>
  1561. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1562. AkeylessAuthSecretRef
  1563. </a>
  1564. </em>
  1565. </td>
  1566. <td>
  1567. <em>(Optional)</em>
  1568. <p>Reference to a Secret that contains the details
  1569. to authenticate with Akeyless.</p>
  1570. </td>
  1571. </tr>
  1572. <tr>
  1573. <td>
  1574. <code>kubernetesAuth</code></br>
  1575. <em>
  1576. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1577. AkeylessKubernetesAuth
  1578. </a>
  1579. </em>
  1580. </td>
  1581. <td>
  1582. <em>(Optional)</em>
  1583. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1584. token stored in the named Secret resource.</p>
  1585. </td>
  1586. </tr>
  1587. </tbody>
  1588. </table>
  1589. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1590. </h3>
  1591. <p>
  1592. (<em>Appears on:</em>
  1593. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1594. </p>
  1595. <p>
  1596. <p>AkeylessAuthSecretRef references a Secret that contains the details
  1597. to authenticate with Akeyless.
  1598. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1599. </p>
  1600. <table>
  1601. <thead>
  1602. <tr>
  1603. <th>Field</th>
  1604. <th>Description</th>
  1605. </tr>
  1606. </thead>
  1607. <tbody>
  1608. <tr>
  1609. <td>
  1610. <code>accessID</code></br>
  1611. <em>
  1612. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1613. External Secrets meta/v1.SecretKeySelector
  1614. </a>
  1615. </em>
  1616. </td>
  1617. <td>
  1618. <p>The SecretAccessID is used for authentication</p>
  1619. </td>
  1620. </tr>
  1621. <tr>
  1622. <td>
  1623. <code>accessType</code></br>
  1624. <em>
  1625. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1626. External Secrets meta/v1.SecretKeySelector
  1627. </a>
  1628. </em>
  1629. </td>
  1630. <td>
  1631. </td>
  1632. </tr>
  1633. <tr>
  1634. <td>
  1635. <code>accessTypeParam</code></br>
  1636. <em>
  1637. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1638. External Secrets meta/v1.SecretKeySelector
  1639. </a>
  1640. </em>
  1641. </td>
  1642. <td>
  1643. </td>
  1644. </tr>
  1645. </tbody>
  1646. </table>
  1647. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1648. </h3>
  1649. <p>
  1650. (<em>Appears on:</em>
  1651. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1652. </p>
  1653. <p>
  1654. <p>AkeylessKubernetesAuth configures Kubernetes authentication with Akeyless.
  1655. It authenticates with Kubernetes ServiceAccount token stored.</p>
  1656. </p>
  1657. <table>
  1658. <thead>
  1659. <tr>
  1660. <th>Field</th>
  1661. <th>Description</th>
  1662. </tr>
  1663. </thead>
  1664. <tbody>
  1665. <tr>
  1666. <td>
  1667. <code>accessID</code></br>
  1668. <em>
  1669. string
  1670. </em>
  1671. </td>
  1672. <td>
  1673. <p>the Akeyless Kubernetes auth-method access-id</p>
  1674. </td>
  1675. </tr>
  1676. <tr>
  1677. <td>
  1678. <code>k8sConfName</code></br>
  1679. <em>
  1680. string
  1681. </em>
  1682. </td>
  1683. <td>
  1684. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1685. </td>
  1686. </tr>
  1687. <tr>
  1688. <td>
  1689. <code>serviceAccountRef</code></br>
  1690. <em>
  1691. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1692. External Secrets meta/v1.ServiceAccountSelector
  1693. </a>
  1694. </em>
  1695. </td>
  1696. <td>
  1697. <em>(Optional)</em>
  1698. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1699. If the service account is specified, the service account secret token JWT will be used
  1700. for authenticating with Akeyless. If the service account selector is not supplied,
  1701. the secretRef will be used instead.</p>
  1702. </td>
  1703. </tr>
  1704. <tr>
  1705. <td>
  1706. <code>secretRef</code></br>
  1707. <em>
  1708. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1709. External Secrets meta/v1.SecretKeySelector
  1710. </a>
  1711. </em>
  1712. </td>
  1713. <td>
  1714. <em>(Optional)</em>
  1715. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1716. for authenticating with Akeyless. If a name is specified without a key,
  1717. <code>token</code> is the default. If one is not specified, the one bound to
  1718. the controller will be used.</p>
  1719. </td>
  1720. </tr>
  1721. </tbody>
  1722. </table>
  1723. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1724. </h3>
  1725. <p>
  1726. (<em>Appears on:</em>
  1727. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1728. </p>
  1729. <p>
  1730. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1731. </p>
  1732. <table>
  1733. <thead>
  1734. <tr>
  1735. <th>Field</th>
  1736. <th>Description</th>
  1737. </tr>
  1738. </thead>
  1739. <tbody>
  1740. <tr>
  1741. <td>
  1742. <code>akeylessGWApiURL</code></br>
  1743. <em>
  1744. string
  1745. </em>
  1746. </td>
  1747. <td>
  1748. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1749. </td>
  1750. </tr>
  1751. <tr>
  1752. <td>
  1753. <code>authSecretRef</code></br>
  1754. <em>
  1755. <a href="#external-secrets.io/v1.AkeylessAuth">
  1756. AkeylessAuth
  1757. </a>
  1758. </em>
  1759. </td>
  1760. <td>
  1761. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1762. </td>
  1763. </tr>
  1764. <tr>
  1765. <td>
  1766. <code>caBundle</code></br>
  1767. <em>
  1768. []byte
  1769. </em>
  1770. </td>
  1771. <td>
  1772. <em>(Optional)</em>
  1773. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1774. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1775. are used to validate the TLS connection.</p>
  1776. </td>
  1777. </tr>
  1778. <tr>
  1779. <td>
  1780. <code>caProvider</code></br>
  1781. <em>
  1782. <a href="#external-secrets.io/v1.CAProvider">
  1783. CAProvider
  1784. </a>
  1785. </em>
  1786. </td>
  1787. <td>
  1788. <em>(Optional)</em>
  1789. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1790. </td>
  1791. </tr>
  1792. </tbody>
  1793. </table>
  1794. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1795. </h3>
  1796. <p>
  1797. (<em>Appears on:</em>
  1798. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1799. </p>
  1800. <p>
  1801. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1802. </p>
  1803. <table>
  1804. <thead>
  1805. <tr>
  1806. <th>Field</th>
  1807. <th>Description</th>
  1808. </tr>
  1809. </thead>
  1810. <tbody>
  1811. <tr>
  1812. <td>
  1813. <code>secretRef</code></br>
  1814. <em>
  1815. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1816. AlibabaAuthSecretRef
  1817. </a>
  1818. </em>
  1819. </td>
  1820. <td>
  1821. <em>(Optional)</em>
  1822. </td>
  1823. </tr>
  1824. <tr>
  1825. <td>
  1826. <code>rrsa</code></br>
  1827. <em>
  1828. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1829. AlibabaRRSAAuth
  1830. </a>
  1831. </em>
  1832. </td>
  1833. <td>
  1834. <em>(Optional)</em>
  1835. </td>
  1836. </tr>
  1837. </tbody>
  1838. </table>
  1839. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1840. </h3>
  1841. <p>
  1842. (<em>Appears on:</em>
  1843. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1844. </p>
  1845. <p>
  1846. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1847. </p>
  1848. <table>
  1849. <thead>
  1850. <tr>
  1851. <th>Field</th>
  1852. <th>Description</th>
  1853. </tr>
  1854. </thead>
  1855. <tbody>
  1856. <tr>
  1857. <td>
  1858. <code>accessKeyIDSecretRef</code></br>
  1859. <em>
  1860. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1861. External Secrets meta/v1.SecretKeySelector
  1862. </a>
  1863. </em>
  1864. </td>
  1865. <td>
  1866. <p>The AccessKeyID is used for authentication</p>
  1867. </td>
  1868. </tr>
  1869. <tr>
  1870. <td>
  1871. <code>accessKeySecretSecretRef</code></br>
  1872. <em>
  1873. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1874. External Secrets meta/v1.SecretKeySelector
  1875. </a>
  1876. </em>
  1877. </td>
  1878. <td>
  1879. <p>The AccessKeySecret is used for authentication</p>
  1880. </td>
  1881. </tr>
  1882. </tbody>
  1883. </table>
  1884. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1885. </h3>
  1886. <p>
  1887. (<em>Appears on:</em>
  1888. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1889. </p>
  1890. <p>
  1891. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1892. </p>
  1893. <table>
  1894. <thead>
  1895. <tr>
  1896. <th>Field</th>
  1897. <th>Description</th>
  1898. </tr>
  1899. </thead>
  1900. <tbody>
  1901. <tr>
  1902. <td>
  1903. <code>auth</code></br>
  1904. <em>
  1905. <a href="#external-secrets.io/v1.AlibabaAuth">
  1906. AlibabaAuth
  1907. </a>
  1908. </em>
  1909. </td>
  1910. <td>
  1911. </td>
  1912. </tr>
  1913. <tr>
  1914. <td>
  1915. <code>regionID</code></br>
  1916. <em>
  1917. string
  1918. </em>
  1919. </td>
  1920. <td>
  1921. <p>Alibaba Region to be used for the provider</p>
  1922. </td>
  1923. </tr>
  1924. </tbody>
  1925. </table>
  1926. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1927. </h3>
  1928. <p>
  1929. (<em>Appears on:</em>
  1930. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1931. </p>
  1932. <p>
  1933. <p>AlibabaRRSAAuth authenticates against Alibaba using RRSA.</p>
  1934. </p>
  1935. <table>
  1936. <thead>
  1937. <tr>
  1938. <th>Field</th>
  1939. <th>Description</th>
  1940. </tr>
  1941. </thead>
  1942. <tbody>
  1943. <tr>
  1944. <td>
  1945. <code>oidcProviderArn</code></br>
  1946. <em>
  1947. string
  1948. </em>
  1949. </td>
  1950. <td>
  1951. </td>
  1952. </tr>
  1953. <tr>
  1954. <td>
  1955. <code>oidcTokenFilePath</code></br>
  1956. <em>
  1957. string
  1958. </em>
  1959. </td>
  1960. <td>
  1961. </td>
  1962. </tr>
  1963. <tr>
  1964. <td>
  1965. <code>roleArn</code></br>
  1966. <em>
  1967. string
  1968. </em>
  1969. </td>
  1970. <td>
  1971. </td>
  1972. </tr>
  1973. <tr>
  1974. <td>
  1975. <code>sessionName</code></br>
  1976. <em>
  1977. string
  1978. </em>
  1979. </td>
  1980. <td>
  1981. </td>
  1982. </tr>
  1983. </tbody>
  1984. </table>
  1985. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1986. </h3>
  1987. <p>
  1988. (<em>Appears on:</em>
  1989. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1990. </p>
  1991. <p>
  1992. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1993. </p>
  1994. <table>
  1995. <thead>
  1996. <tr>
  1997. <th>Field</th>
  1998. <th>Description</th>
  1999. </tr>
  2000. </thead>
  2001. <tbody>
  2002. <tr>
  2003. <td>
  2004. <code>ntlm</code></br>
  2005. <em>
  2006. <a href="#external-secrets.io/v1.NTLMProtocol">
  2007. NTLMProtocol
  2008. </a>
  2009. </em>
  2010. </td>
  2011. <td>
  2012. <em>(Optional)</em>
  2013. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  2014. </td>
  2015. </tr>
  2016. </tbody>
  2017. </table>
  2018. <h3 id="external-secrets.io/v1.AwsAuthCredentials">AwsAuthCredentials
  2019. </h3>
  2020. <p>
  2021. (<em>Appears on:</em>
  2022. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2023. </p>
  2024. <p>
  2025. <p>AwsAuthCredentials represents the credentials for AWS authentication.</p>
  2026. </p>
  2027. <table>
  2028. <thead>
  2029. <tr>
  2030. <th>Field</th>
  2031. <th>Description</th>
  2032. </tr>
  2033. </thead>
  2034. <tbody>
  2035. <tr>
  2036. <td>
  2037. <code>identityId</code></br>
  2038. <em>
  2039. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2040. External Secrets meta/v1.SecretKeySelector
  2041. </a>
  2042. </em>
  2043. </td>
  2044. <td>
  2045. </td>
  2046. </tr>
  2047. </tbody>
  2048. </table>
  2049. <h3 id="external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig
  2050. </h3>
  2051. <p>
  2052. (<em>Appears on:</em>
  2053. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  2054. </p>
  2055. <p>
  2056. <p>AwsCredentialsConfig holds the region and the Secret reference which contains the AWS credentials.</p>
  2057. </p>
  2058. <table>
  2059. <thead>
  2060. <tr>
  2061. <th>Field</th>
  2062. <th>Description</th>
  2063. </tr>
  2064. </thead>
  2065. <tbody>
  2066. <tr>
  2067. <td>
  2068. <code>region</code></br>
  2069. <em>
  2070. string
  2071. </em>
  2072. </td>
  2073. <td>
  2074. <p>region is for configuring the AWS region to be used.</p>
  2075. </td>
  2076. </tr>
  2077. <tr>
  2078. <td>
  2079. <code>awsCredentialsSecretRef</code></br>
  2080. <em>
  2081. <a href="#external-secrets.io/v1.SecretReference">
  2082. SecretReference
  2083. </a>
  2084. </em>
  2085. </td>
  2086. <td>
  2087. <p>awsCredentialsSecretRef is the reference to the secret which holds the AWS credentials.
  2088. Secret should be created with below names for keys
  2089. - aws_access_key_id: Access Key ID, which is the unique identifier for the AWS account or the IAM user.
  2090. - aws_secret_access_key: Secret Access Key, which is used to authenticate requests made to AWS services.
  2091. - aws_session_token: Session Token, is the short-lived token to authenticate requests made to AWS services.</p>
  2092. </td>
  2093. </tr>
  2094. </tbody>
  2095. </table>
  2096. <h3 id="external-secrets.io/v1.AzureAuthCredentials">AzureAuthCredentials
  2097. </h3>
  2098. <p>
  2099. (<em>Appears on:</em>
  2100. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2101. </p>
  2102. <p>
  2103. <p>AzureAuthCredentials represents the credentials for Azure authentication.</p>
  2104. </p>
  2105. <table>
  2106. <thead>
  2107. <tr>
  2108. <th>Field</th>
  2109. <th>Description</th>
  2110. </tr>
  2111. </thead>
  2112. <tbody>
  2113. <tr>
  2114. <td>
  2115. <code>identityId</code></br>
  2116. <em>
  2117. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2118. External Secrets meta/v1.SecretKeySelector
  2119. </a>
  2120. </em>
  2121. </td>
  2122. <td>
  2123. </td>
  2124. </tr>
  2125. <tr>
  2126. <td>
  2127. <code>resource</code></br>
  2128. <em>
  2129. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2130. External Secrets meta/v1.SecretKeySelector
  2131. </a>
  2132. </em>
  2133. </td>
  2134. <td>
  2135. <em>(Optional)</em>
  2136. </td>
  2137. </tr>
  2138. </tbody>
  2139. </table>
  2140. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  2141. (<code>string</code> alias)</p></h3>
  2142. <p>
  2143. (<em>Appears on:</em>
  2144. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2145. </p>
  2146. <p>
  2147. <p>AzureAuthType describes how to authenticate to the Azure Keyvault
  2148. Only one of the following auth types may be specified.
  2149. If none of the following auth type is specified, the default one
  2150. is ServicePrincipal.</p>
  2151. </p>
  2152. <table>
  2153. <thead>
  2154. <tr>
  2155. <th>Value</th>
  2156. <th>Description</th>
  2157. </tr>
  2158. </thead>
  2159. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2160. <td><p>AzureManagedIdentity uses Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2161. </td>
  2162. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2163. <td><p>AzureServicePrincipal uses service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2164. </td>
  2165. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2166. <td><p>AzureWorkloadIdentity uses Workload Identity service accounts to authenticate.</p>
  2167. </td>
  2168. </tr></tbody>
  2169. </table>
  2170. <h3 id="external-secrets.io/v1.AzureCustomCloudConfig">AzureCustomCloudConfig
  2171. </h3>
  2172. <p>
  2173. (<em>Appears on:</em>
  2174. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2175. </p>
  2176. <p>
  2177. <p>AzureCustomCloudConfig specifies custom cloud configuration for private Azure environments
  2178. IMPORTANT: Custom cloud configuration is ONLY supported when UseAzureSDK is true.
  2179. The legacy go-autorest SDK does not support custom cloud endpoints.</p>
  2180. </p>
  2181. <table>
  2182. <thead>
  2183. <tr>
  2184. <th>Field</th>
  2185. <th>Description</th>
  2186. </tr>
  2187. </thead>
  2188. <tbody>
  2189. <tr>
  2190. <td>
  2191. <code>activeDirectoryEndpoint</code></br>
  2192. <em>
  2193. string
  2194. </em>
  2195. </td>
  2196. <td>
  2197. <p>ActiveDirectoryEndpoint is the AAD endpoint for authentication
  2198. Required when using custom cloud configuration</p>
  2199. </td>
  2200. </tr>
  2201. <tr>
  2202. <td>
  2203. <code>keyVaultEndpoint</code></br>
  2204. <em>
  2205. string
  2206. </em>
  2207. </td>
  2208. <td>
  2209. <em>(Optional)</em>
  2210. <p>KeyVaultEndpoint is the Key Vault service endpoint</p>
  2211. </td>
  2212. </tr>
  2213. <tr>
  2214. <td>
  2215. <code>keyVaultDNSSuffix</code></br>
  2216. <em>
  2217. string
  2218. </em>
  2219. </td>
  2220. <td>
  2221. <em>(Optional)</em>
  2222. <p>KeyVaultDNSSuffix is the DNS suffix for Key Vault URLs</p>
  2223. </td>
  2224. </tr>
  2225. <tr>
  2226. <td>
  2227. <code>resourceManagerEndpoint</code></br>
  2228. <em>
  2229. string
  2230. </em>
  2231. </td>
  2232. <td>
  2233. <em>(Optional)</em>
  2234. <p>ResourceManagerEndpoint is the Azure Resource Manager endpoint</p>
  2235. </td>
  2236. </tr>
  2237. </tbody>
  2238. </table>
  2239. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  2240. (<code>string</code> alias)</p></h3>
  2241. <p>
  2242. (<em>Appears on:</em>
  2243. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2244. </p>
  2245. <p>
  2246. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2247. connecting and authenticating with Azure. By default, it points to the public cloud AAD endpoint.
  2248. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2249. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud</p>
  2250. </p>
  2251. <table>
  2252. <thead>
  2253. <tr>
  2254. <th>Value</th>
  2255. <th>Description</th>
  2256. </tr>
  2257. </thead>
  2258. <tbody><tr><td><p>&#34;AzureStackCloud&#34;</p></td>
  2259. <td></td>
  2260. </tr><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2261. <td></td>
  2262. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2263. <td></td>
  2264. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2265. <td></td>
  2266. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2267. <td></td>
  2268. </tr></tbody>
  2269. </table>
  2270. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2271. </h3>
  2272. <p>
  2273. (<em>Appears on:</em>
  2274. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2275. </p>
  2276. <p>
  2277. <p>AzureKVAuth is the configuration used to authenticate with Azure.</p>
  2278. </p>
  2279. <table>
  2280. <thead>
  2281. <tr>
  2282. <th>Field</th>
  2283. <th>Description</th>
  2284. </tr>
  2285. </thead>
  2286. <tbody>
  2287. <tr>
  2288. <td>
  2289. <code>clientId</code></br>
  2290. <em>
  2291. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2292. External Secrets meta/v1.SecretKeySelector
  2293. </a>
  2294. </em>
  2295. </td>
  2296. <td>
  2297. <em>(Optional)</em>
  2298. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2299. </td>
  2300. </tr>
  2301. <tr>
  2302. <td>
  2303. <code>tenantId</code></br>
  2304. <em>
  2305. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2306. External Secrets meta/v1.SecretKeySelector
  2307. </a>
  2308. </em>
  2309. </td>
  2310. <td>
  2311. <em>(Optional)</em>
  2312. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2313. </td>
  2314. </tr>
  2315. <tr>
  2316. <td>
  2317. <code>clientSecret</code></br>
  2318. <em>
  2319. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2320. External Secrets meta/v1.SecretKeySelector
  2321. </a>
  2322. </em>
  2323. </td>
  2324. <td>
  2325. <em>(Optional)</em>
  2326. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2327. </td>
  2328. </tr>
  2329. <tr>
  2330. <td>
  2331. <code>clientCertificate</code></br>
  2332. <em>
  2333. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2334. External Secrets meta/v1.SecretKeySelector
  2335. </a>
  2336. </em>
  2337. </td>
  2338. <td>
  2339. <em>(Optional)</em>
  2340. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2341. </td>
  2342. </tr>
  2343. </tbody>
  2344. </table>
  2345. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2346. </h3>
  2347. <p>
  2348. (<em>Appears on:</em>
  2349. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2350. </p>
  2351. <p>
  2352. <p>AzureKVProvider configures a store to sync secrets using Azure KV.</p>
  2353. </p>
  2354. <table>
  2355. <thead>
  2356. <tr>
  2357. <th>Field</th>
  2358. <th>Description</th>
  2359. </tr>
  2360. </thead>
  2361. <tbody>
  2362. <tr>
  2363. <td>
  2364. <code>authType</code></br>
  2365. <em>
  2366. <a href="#external-secrets.io/v1.AzureAuthType">
  2367. AzureAuthType
  2368. </a>
  2369. </em>
  2370. </td>
  2371. <td>
  2372. <em>(Optional)</em>
  2373. <p>Auth type defines how to authenticate to the keyvault service.
  2374. Valid values are:
  2375. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2376. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2377. </td>
  2378. </tr>
  2379. <tr>
  2380. <td>
  2381. <code>vaultUrl</code></br>
  2382. <em>
  2383. string
  2384. </em>
  2385. </td>
  2386. <td>
  2387. <p>Vault Url from which the secrets to be fetched from.</p>
  2388. </td>
  2389. </tr>
  2390. <tr>
  2391. <td>
  2392. <code>tenantId</code></br>
  2393. <em>
  2394. string
  2395. </em>
  2396. </td>
  2397. <td>
  2398. <em>(Optional)</em>
  2399. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2400. </td>
  2401. </tr>
  2402. <tr>
  2403. <td>
  2404. <code>environmentType</code></br>
  2405. <em>
  2406. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2407. AzureEnvironmentType
  2408. </a>
  2409. </em>
  2410. </td>
  2411. <td>
  2412. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2413. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2414. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2415. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud
  2416. Use AzureStackCloud when you need to configure custom Azure Stack Hub or Azure Stack Edge endpoints.</p>
  2417. </td>
  2418. </tr>
  2419. <tr>
  2420. <td>
  2421. <code>authSecretRef</code></br>
  2422. <em>
  2423. <a href="#external-secrets.io/v1.AzureKVAuth">
  2424. AzureKVAuth
  2425. </a>
  2426. </em>
  2427. </td>
  2428. <td>
  2429. <em>(Optional)</em>
  2430. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2431. </td>
  2432. </tr>
  2433. <tr>
  2434. <td>
  2435. <code>serviceAccountRef</code></br>
  2436. <em>
  2437. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2438. External Secrets meta/v1.ServiceAccountSelector
  2439. </a>
  2440. </em>
  2441. </td>
  2442. <td>
  2443. <em>(Optional)</em>
  2444. <p>ServiceAccountRef specified the service account
  2445. that should be used when authenticating with WorkloadIdentity.</p>
  2446. </td>
  2447. </tr>
  2448. <tr>
  2449. <td>
  2450. <code>identityId</code></br>
  2451. <em>
  2452. string
  2453. </em>
  2454. </td>
  2455. <td>
  2456. <em>(Optional)</em>
  2457. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2458. </td>
  2459. </tr>
  2460. <tr>
  2461. <td>
  2462. <code>useAzureSDK</code></br>
  2463. <em>
  2464. bool
  2465. </em>
  2466. </td>
  2467. <td>
  2468. <em>(Optional)</em>
  2469. <p>UseAzureSDK enables the use of the new Azure SDK for Go (azcore-based) instead of the legacy go-autorest SDK.
  2470. This is experimental and may have behavioral differences. Defaults to false (legacy SDK).</p>
  2471. </td>
  2472. </tr>
  2473. <tr>
  2474. <td>
  2475. <code>customCloudConfig</code></br>
  2476. <em>
  2477. <a href="#external-secrets.io/v1.AzureCustomCloudConfig">
  2478. AzureCustomCloudConfig
  2479. </a>
  2480. </em>
  2481. </td>
  2482. <td>
  2483. <em>(Optional)</em>
  2484. <p>CustomCloudConfig defines custom Azure Stack Hub or Azure Stack Edge endpoints.
  2485. Required when EnvironmentType is AzureStackCloud.
  2486. IMPORTANT: This feature REQUIRES UseAzureSDK to be set to true. Custom cloud
  2487. configuration is not supported with the legacy go-autorest SDK.</p>
  2488. </td>
  2489. </tr>
  2490. </tbody>
  2491. </table>
  2492. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2493. </h3>
  2494. <p>
  2495. (<em>Appears on:</em>
  2496. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2497. </p>
  2498. <p>
  2499. <p>BeyondTrustProviderSecretRef references a value that can be specified directly or via a secret
  2500. for a BeyondTrustProvider.</p>
  2501. </p>
  2502. <table>
  2503. <thead>
  2504. <tr>
  2505. <th>Field</th>
  2506. <th>Description</th>
  2507. </tr>
  2508. </thead>
  2509. <tbody>
  2510. <tr>
  2511. <td>
  2512. <code>value</code></br>
  2513. <em>
  2514. string
  2515. </em>
  2516. </td>
  2517. <td>
  2518. <em>(Optional)</em>
  2519. <p>Value can be specified directly to set a value without using a secret.</p>
  2520. </td>
  2521. </tr>
  2522. <tr>
  2523. <td>
  2524. <code>secretRef</code></br>
  2525. <em>
  2526. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2527. External Secrets meta/v1.SecretKeySelector
  2528. </a>
  2529. </em>
  2530. </td>
  2531. <td>
  2532. <em>(Optional)</em>
  2533. <p>SecretRef references a key in a secret that will be used as value.</p>
  2534. </td>
  2535. </tr>
  2536. </tbody>
  2537. </table>
  2538. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2539. </h3>
  2540. <p>
  2541. (<em>Appears on:</em>
  2542. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2543. </p>
  2544. <p>
  2545. <p>BeyondtrustAuth provides different ways to authenticate to a BeyondtrustProvider server.</p>
  2546. </p>
  2547. <table>
  2548. <thead>
  2549. <tr>
  2550. <th>Field</th>
  2551. <th>Description</th>
  2552. </tr>
  2553. </thead>
  2554. <tbody>
  2555. <tr>
  2556. <td>
  2557. <code>apiKey</code></br>
  2558. <em>
  2559. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2560. BeyondTrustProviderSecretRef
  2561. </a>
  2562. </em>
  2563. </td>
  2564. <td>
  2565. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2566. </td>
  2567. </tr>
  2568. <tr>
  2569. <td>
  2570. <code>clientId</code></br>
  2571. <em>
  2572. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2573. BeyondTrustProviderSecretRef
  2574. </a>
  2575. </em>
  2576. </td>
  2577. <td>
  2578. <p>ClientID is the API OAuth Client ID.</p>
  2579. </td>
  2580. </tr>
  2581. <tr>
  2582. <td>
  2583. <code>clientSecret</code></br>
  2584. <em>
  2585. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2586. BeyondTrustProviderSecretRef
  2587. </a>
  2588. </em>
  2589. </td>
  2590. <td>
  2591. <p>ClientSecret is the API OAuth Client Secret.</p>
  2592. </td>
  2593. </tr>
  2594. <tr>
  2595. <td>
  2596. <code>certificate</code></br>
  2597. <em>
  2598. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2599. BeyondTrustProviderSecretRef
  2600. </a>
  2601. </em>
  2602. </td>
  2603. <td>
  2604. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2605. </td>
  2606. </tr>
  2607. <tr>
  2608. <td>
  2609. <code>certificateKey</code></br>
  2610. <em>
  2611. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2612. BeyondTrustProviderSecretRef
  2613. </a>
  2614. </em>
  2615. </td>
  2616. <td>
  2617. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2618. </td>
  2619. </tr>
  2620. </tbody>
  2621. </table>
  2622. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2623. </h3>
  2624. <p>
  2625. (<em>Appears on:</em>
  2626. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2627. </p>
  2628. <p>
  2629. <p>BeyondtrustProvider provides access to a BeyondTrust secrets provider.</p>
  2630. </p>
  2631. <table>
  2632. <thead>
  2633. <tr>
  2634. <th>Field</th>
  2635. <th>Description</th>
  2636. </tr>
  2637. </thead>
  2638. <tbody>
  2639. <tr>
  2640. <td>
  2641. <code>auth</code></br>
  2642. <em>
  2643. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2644. BeyondtrustAuth
  2645. </a>
  2646. </em>
  2647. </td>
  2648. <td>
  2649. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2650. </td>
  2651. </tr>
  2652. <tr>
  2653. <td>
  2654. <code>server</code></br>
  2655. <em>
  2656. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2657. BeyondtrustServer
  2658. </a>
  2659. </em>
  2660. </td>
  2661. <td>
  2662. <p>Auth configures how API server works.</p>
  2663. </td>
  2664. </tr>
  2665. </tbody>
  2666. </table>
  2667. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2668. </h3>
  2669. <p>
  2670. (<em>Appears on:</em>
  2671. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2672. </p>
  2673. <p>
  2674. <p>BeyondtrustServer configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2675. </p>
  2676. <table>
  2677. <thead>
  2678. <tr>
  2679. <th>Field</th>
  2680. <th>Description</th>
  2681. </tr>
  2682. </thead>
  2683. <tbody>
  2684. <tr>
  2685. <td>
  2686. <code>apiUrl</code></br>
  2687. <em>
  2688. string
  2689. </em>
  2690. </td>
  2691. <td>
  2692. </td>
  2693. </tr>
  2694. <tr>
  2695. <td>
  2696. <code>apiVersion</code></br>
  2697. <em>
  2698. string
  2699. </em>
  2700. </td>
  2701. <td>
  2702. </td>
  2703. </tr>
  2704. <tr>
  2705. <td>
  2706. <code>retrievalType</code></br>
  2707. <em>
  2708. string
  2709. </em>
  2710. </td>
  2711. <td>
  2712. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2713. </td>
  2714. </tr>
  2715. <tr>
  2716. <td>
  2717. <code>separator</code></br>
  2718. <em>
  2719. string
  2720. </em>
  2721. </td>
  2722. <td>
  2723. <p>A character that separates the folder names.</p>
  2724. </td>
  2725. </tr>
  2726. <tr>
  2727. <td>
  2728. <code>verifyCA</code></br>
  2729. <em>
  2730. bool
  2731. </em>
  2732. </td>
  2733. <td>
  2734. </td>
  2735. </tr>
  2736. <tr>
  2737. <td>
  2738. <code>clientTimeOutSeconds</code></br>
  2739. <em>
  2740. int
  2741. </em>
  2742. </td>
  2743. <td>
  2744. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2745. </td>
  2746. </tr>
  2747. </tbody>
  2748. </table>
  2749. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2750. </h3>
  2751. <p>
  2752. (<em>Appears on:</em>
  2753. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2754. </p>
  2755. <p>
  2756. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2757. </p>
  2758. <table>
  2759. <thead>
  2760. <tr>
  2761. <th>Field</th>
  2762. <th>Description</th>
  2763. </tr>
  2764. </thead>
  2765. <tbody>
  2766. <tr>
  2767. <td>
  2768. <code>secretRef</code></br>
  2769. <em>
  2770. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2771. BitwardenSecretsManagerSecretRef
  2772. </a>
  2773. </em>
  2774. </td>
  2775. <td>
  2776. </td>
  2777. </tr>
  2778. </tbody>
  2779. </table>
  2780. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2781. </h3>
  2782. <p>
  2783. (<em>Appears on:</em>
  2784. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2785. </p>
  2786. <p>
  2787. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2788. </p>
  2789. <table>
  2790. <thead>
  2791. <tr>
  2792. <th>Field</th>
  2793. <th>Description</th>
  2794. </tr>
  2795. </thead>
  2796. <tbody>
  2797. <tr>
  2798. <td>
  2799. <code>apiURL</code></br>
  2800. <em>
  2801. string
  2802. </em>
  2803. </td>
  2804. <td>
  2805. </td>
  2806. </tr>
  2807. <tr>
  2808. <td>
  2809. <code>identityURL</code></br>
  2810. <em>
  2811. string
  2812. </em>
  2813. </td>
  2814. <td>
  2815. </td>
  2816. </tr>
  2817. <tr>
  2818. <td>
  2819. <code>bitwardenServerSDKURL</code></br>
  2820. <em>
  2821. string
  2822. </em>
  2823. </td>
  2824. <td>
  2825. </td>
  2826. </tr>
  2827. <tr>
  2828. <td>
  2829. <code>caBundle</code></br>
  2830. <em>
  2831. string
  2832. </em>
  2833. </td>
  2834. <td>
  2835. <em>(Optional)</em>
  2836. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2837. can be performed.</p>
  2838. </td>
  2839. </tr>
  2840. <tr>
  2841. <td>
  2842. <code>caProvider</code></br>
  2843. <em>
  2844. <a href="#external-secrets.io/v1.CAProvider">
  2845. CAProvider
  2846. </a>
  2847. </em>
  2848. </td>
  2849. <td>
  2850. <em>(Optional)</em>
  2851. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2852. </td>
  2853. </tr>
  2854. <tr>
  2855. <td>
  2856. <code>organizationID</code></br>
  2857. <em>
  2858. string
  2859. </em>
  2860. </td>
  2861. <td>
  2862. <p>OrganizationID determines which organization this secret store manages.</p>
  2863. </td>
  2864. </tr>
  2865. <tr>
  2866. <td>
  2867. <code>projectID</code></br>
  2868. <em>
  2869. string
  2870. </em>
  2871. </td>
  2872. <td>
  2873. <p>ProjectID determines which project this secret store manages.</p>
  2874. </td>
  2875. </tr>
  2876. <tr>
  2877. <td>
  2878. <code>auth</code></br>
  2879. <em>
  2880. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2881. BitwardenSecretsManagerAuth
  2882. </a>
  2883. </em>
  2884. </td>
  2885. <td>
  2886. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2887. Make sure that the token being used has permissions on the given secret.</p>
  2888. </td>
  2889. </tr>
  2890. </tbody>
  2891. </table>
  2892. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2893. </h3>
  2894. <p>
  2895. (<em>Appears on:</em>
  2896. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2897. </p>
  2898. <p>
  2899. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2900. </p>
  2901. <table>
  2902. <thead>
  2903. <tr>
  2904. <th>Field</th>
  2905. <th>Description</th>
  2906. </tr>
  2907. </thead>
  2908. <tbody>
  2909. <tr>
  2910. <td>
  2911. <code>credentials</code></br>
  2912. <em>
  2913. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2914. External Secrets meta/v1.SecretKeySelector
  2915. </a>
  2916. </em>
  2917. </td>
  2918. <td>
  2919. <p>AccessToken used for the bitwarden instance.</p>
  2920. </td>
  2921. </tr>
  2922. </tbody>
  2923. </table>
  2924. <h3 id="external-secrets.io/v1.ByID">ByID
  2925. </h3>
  2926. <p>
  2927. (<em>Appears on:</em>
  2928. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2929. </p>
  2930. <p>
  2931. <p>ByID configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID.</p>
  2932. </p>
  2933. <h3 id="external-secrets.io/v1.ByName">ByName
  2934. </h3>
  2935. <p>
  2936. (<em>Appears on:</em>
  2937. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2938. </p>
  2939. <p>
  2940. <p>ByName configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret name.</p>
  2941. </p>
  2942. <table>
  2943. <thead>
  2944. <tr>
  2945. <th>Field</th>
  2946. <th>Description</th>
  2947. </tr>
  2948. </thead>
  2949. <tbody>
  2950. <tr>
  2951. <td>
  2952. <code>folderID</code></br>
  2953. <em>
  2954. string
  2955. </em>
  2956. </td>
  2957. <td>
  2958. <p>The folder to fetch secrets from</p>
  2959. </td>
  2960. </tr>
  2961. </tbody>
  2962. </table>
  2963. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2964. </h3>
  2965. <p>
  2966. (<em>Appears on:</em>
  2967. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2968. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2969. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2970. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>,
  2971. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2972. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2973. </p>
  2974. <p>
  2975. <p>CAProvider provides a custom certificate authority for accessing the provider&rsquo;s store.
  2976. The CAProvider points to a Secret or ConfigMap resource that contains a PEM-encoded certificate.</p>
  2977. </p>
  2978. <table>
  2979. <thead>
  2980. <tr>
  2981. <th>Field</th>
  2982. <th>Description</th>
  2983. </tr>
  2984. </thead>
  2985. <tbody>
  2986. <tr>
  2987. <td>
  2988. <code>type</code></br>
  2989. <em>
  2990. <a href="#external-secrets.io/v1.CAProviderType">
  2991. CAProviderType
  2992. </a>
  2993. </em>
  2994. </td>
  2995. <td>
  2996. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2997. </td>
  2998. </tr>
  2999. <tr>
  3000. <td>
  3001. <code>name</code></br>
  3002. <em>
  3003. string
  3004. </em>
  3005. </td>
  3006. <td>
  3007. <p>The name of the object located at the provider type.</p>
  3008. </td>
  3009. </tr>
  3010. <tr>
  3011. <td>
  3012. <code>key</code></br>
  3013. <em>
  3014. string
  3015. </em>
  3016. </td>
  3017. <td>
  3018. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  3019. </td>
  3020. </tr>
  3021. <tr>
  3022. <td>
  3023. <code>namespace</code></br>
  3024. <em>
  3025. string
  3026. </em>
  3027. </td>
  3028. <td>
  3029. <em>(Optional)</em>
  3030. <p>The namespace the Provider type is in.
  3031. Can only be defined when used in a ClusterSecretStore.</p>
  3032. </td>
  3033. </tr>
  3034. </tbody>
  3035. </table>
  3036. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  3037. (<code>string</code> alias)</p></h3>
  3038. <p>
  3039. (<em>Appears on:</em>
  3040. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  3041. </p>
  3042. <p>
  3043. <p>CAProviderType defines the type of provider for certificate authority.</p>
  3044. </p>
  3045. <table>
  3046. <thead>
  3047. <tr>
  3048. <th>Value</th>
  3049. <th>Description</th>
  3050. </tr>
  3051. </thead>
  3052. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  3053. <td><p>CAProviderTypeConfigMap indicates that the CA certificate is stored in a ConfigMap resource.</p>
  3054. </td>
  3055. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  3056. <td><p>CAProviderTypeSecret indicates that the CA certificate is stored in a Secret resource.</p>
  3057. </td>
  3058. </tr></tbody>
  3059. </table>
  3060. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  3061. </h3>
  3062. <p>
  3063. (<em>Appears on:</em>
  3064. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  3065. </p>
  3066. <p>
  3067. <p>CSMAuth contains a secretRef for credentials.</p>
  3068. </p>
  3069. <table>
  3070. <thead>
  3071. <tr>
  3072. <th>Field</th>
  3073. <th>Description</th>
  3074. </tr>
  3075. </thead>
  3076. <tbody>
  3077. <tr>
  3078. <td>
  3079. <code>secretRef</code></br>
  3080. <em>
  3081. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  3082. CSMAuthSecretRef
  3083. </a>
  3084. </em>
  3085. </td>
  3086. <td>
  3087. <em>(Optional)</em>
  3088. </td>
  3089. </tr>
  3090. </tbody>
  3091. </table>
  3092. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  3093. </h3>
  3094. <p>
  3095. (<em>Appears on:</em>
  3096. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  3097. </p>
  3098. <p>
  3099. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  3100. </p>
  3101. <table>
  3102. <thead>
  3103. <tr>
  3104. <th>Field</th>
  3105. <th>Description</th>
  3106. </tr>
  3107. </thead>
  3108. <tbody>
  3109. <tr>
  3110. <td>
  3111. <code>accessKeyIDSecretRef</code></br>
  3112. <em>
  3113. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3114. External Secrets meta/v1.SecretKeySelector
  3115. </a>
  3116. </em>
  3117. </td>
  3118. <td>
  3119. <p>The AccessKeyID is used for authentication</p>
  3120. </td>
  3121. </tr>
  3122. <tr>
  3123. <td>
  3124. <code>accessKeySecretSecretRef</code></br>
  3125. <em>
  3126. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3127. External Secrets meta/v1.SecretKeySelector
  3128. </a>
  3129. </em>
  3130. </td>
  3131. <td>
  3132. <p>The AccessKeySecret is used for authentication</p>
  3133. </td>
  3134. </tr>
  3135. </tbody>
  3136. </table>
  3137. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  3138. </h3>
  3139. <p>
  3140. (<em>Appears on:</em>
  3141. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  3142. </p>
  3143. <p>
  3144. <p>CertAuth defines certificate-based authentication configuration for Kubernetes.</p>
  3145. </p>
  3146. <table>
  3147. <thead>
  3148. <tr>
  3149. <th>Field</th>
  3150. <th>Description</th>
  3151. </tr>
  3152. </thead>
  3153. <tbody>
  3154. <tr>
  3155. <td>
  3156. <code>clientCert</code></br>
  3157. <em>
  3158. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3159. External Secrets meta/v1.SecretKeySelector
  3160. </a>
  3161. </em>
  3162. </td>
  3163. <td>
  3164. </td>
  3165. </tr>
  3166. <tr>
  3167. <td>
  3168. <code>clientKey</code></br>
  3169. <em>
  3170. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3171. External Secrets meta/v1.SecretKeySelector
  3172. </a>
  3173. </em>
  3174. </td>
  3175. <td>
  3176. </td>
  3177. </tr>
  3178. </tbody>
  3179. </table>
  3180. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  3181. </h3>
  3182. <p>
  3183. (<em>Appears on:</em>
  3184. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  3185. </p>
  3186. <p>
  3187. <p>ChefAuth contains a secretRef for credentials.</p>
  3188. </p>
  3189. <table>
  3190. <thead>
  3191. <tr>
  3192. <th>Field</th>
  3193. <th>Description</th>
  3194. </tr>
  3195. </thead>
  3196. <tbody>
  3197. <tr>
  3198. <td>
  3199. <code>secretRef</code></br>
  3200. <em>
  3201. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  3202. ChefAuthSecretRef
  3203. </a>
  3204. </em>
  3205. </td>
  3206. <td>
  3207. </td>
  3208. </tr>
  3209. </tbody>
  3210. </table>
  3211. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  3212. </h3>
  3213. <p>
  3214. (<em>Appears on:</em>
  3215. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  3216. </p>
  3217. <p>
  3218. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  3219. </p>
  3220. <table>
  3221. <thead>
  3222. <tr>
  3223. <th>Field</th>
  3224. <th>Description</th>
  3225. </tr>
  3226. </thead>
  3227. <tbody>
  3228. <tr>
  3229. <td>
  3230. <code>privateKeySecretRef</code></br>
  3231. <em>
  3232. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3233. External Secrets meta/v1.SecretKeySelector
  3234. </a>
  3235. </em>
  3236. </td>
  3237. <td>
  3238. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  3239. </td>
  3240. </tr>
  3241. </tbody>
  3242. </table>
  3243. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  3244. </h3>
  3245. <p>
  3246. (<em>Appears on:</em>
  3247. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3248. </p>
  3249. <p>
  3250. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  3251. </p>
  3252. <table>
  3253. <thead>
  3254. <tr>
  3255. <th>Field</th>
  3256. <th>Description</th>
  3257. </tr>
  3258. </thead>
  3259. <tbody>
  3260. <tr>
  3261. <td>
  3262. <code>auth</code></br>
  3263. <em>
  3264. <a href="#external-secrets.io/v1.ChefAuth">
  3265. ChefAuth
  3266. </a>
  3267. </em>
  3268. </td>
  3269. <td>
  3270. <p>Auth defines the information necessary to authenticate against chef Server</p>
  3271. </td>
  3272. </tr>
  3273. <tr>
  3274. <td>
  3275. <code>username</code></br>
  3276. <em>
  3277. string
  3278. </em>
  3279. </td>
  3280. <td>
  3281. <p>UserName should be the user ID on the chef server</p>
  3282. </td>
  3283. </tr>
  3284. <tr>
  3285. <td>
  3286. <code>serverUrl</code></br>
  3287. <em>
  3288. string
  3289. </em>
  3290. </td>
  3291. <td>
  3292. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  3293. </td>
  3294. </tr>
  3295. </tbody>
  3296. </table>
  3297. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  3298. </h3>
  3299. <p>
  3300. (<em>Appears on:</em>
  3301. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3302. </p>
  3303. <p>
  3304. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  3305. </p>
  3306. <table>
  3307. <thead>
  3308. <tr>
  3309. <th>Field</th>
  3310. <th>Description</th>
  3311. </tr>
  3312. </thead>
  3313. <tbody>
  3314. <tr>
  3315. <td>
  3316. <code>auth</code></br>
  3317. <em>
  3318. <a href="#external-secrets.io/v1.CSMAuth">
  3319. CSMAuth
  3320. </a>
  3321. </em>
  3322. </td>
  3323. <td>
  3324. </td>
  3325. </tr>
  3326. <tr>
  3327. <td>
  3328. <code>projectID</code></br>
  3329. <em>
  3330. string
  3331. </em>
  3332. </td>
  3333. <td>
  3334. <p>ProjectID is the project, which the secrets are stored in.</p>
  3335. </td>
  3336. </tr>
  3337. </tbody>
  3338. </table>
  3339. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3340. </h3>
  3341. <p>
  3342. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3343. </p>
  3344. <table>
  3345. <thead>
  3346. <tr>
  3347. <th>Field</th>
  3348. <th>Description</th>
  3349. </tr>
  3350. </thead>
  3351. <tbody>
  3352. <tr>
  3353. <td>
  3354. <code>metadata</code></br>
  3355. <em>
  3356. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3357. Kubernetes meta/v1.ObjectMeta
  3358. </a>
  3359. </em>
  3360. </td>
  3361. <td>
  3362. Refer to the Kubernetes API documentation for the fields of the
  3363. <code>metadata</code> field.
  3364. </td>
  3365. </tr>
  3366. <tr>
  3367. <td>
  3368. <code>spec</code></br>
  3369. <em>
  3370. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3371. ClusterExternalSecretSpec
  3372. </a>
  3373. </em>
  3374. </td>
  3375. <td>
  3376. <br/>
  3377. <br/>
  3378. <table>
  3379. <tr>
  3380. <td>
  3381. <code>externalSecretSpec</code></br>
  3382. <em>
  3383. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3384. ExternalSecretSpec
  3385. </a>
  3386. </em>
  3387. </td>
  3388. <td>
  3389. <p>The spec for the ExternalSecrets to be created</p>
  3390. </td>
  3391. </tr>
  3392. <tr>
  3393. <td>
  3394. <code>externalSecretName</code></br>
  3395. <em>
  3396. string
  3397. </em>
  3398. </td>
  3399. <td>
  3400. <em>(Optional)</em>
  3401. <p>The name of the external secrets to be created.
  3402. Defaults to the name of the ClusterExternalSecret</p>
  3403. </td>
  3404. </tr>
  3405. <tr>
  3406. <td>
  3407. <code>externalSecretMetadata</code></br>
  3408. <em>
  3409. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3410. ExternalSecretMetadata
  3411. </a>
  3412. </em>
  3413. </td>
  3414. <td>
  3415. <em>(Optional)</em>
  3416. <p>The metadata of the external secrets to be created</p>
  3417. </td>
  3418. </tr>
  3419. <tr>
  3420. <td>
  3421. <code>namespaceSelector</code></br>
  3422. <em>
  3423. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3424. Kubernetes meta/v1.LabelSelector
  3425. </a>
  3426. </em>
  3427. </td>
  3428. <td>
  3429. <em>(Optional)</em>
  3430. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3431. Deprecated: Use NamespaceSelectors instead.</p>
  3432. </td>
  3433. </tr>
  3434. <tr>
  3435. <td>
  3436. <code>namespaceSelectors</code></br>
  3437. <em>
  3438. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3439. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3440. </a>
  3441. </em>
  3442. </td>
  3443. <td>
  3444. <em>(Optional)</em>
  3445. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3446. </td>
  3447. </tr>
  3448. <tr>
  3449. <td>
  3450. <code>namespaces</code></br>
  3451. <em>
  3452. []string
  3453. </em>
  3454. </td>
  3455. <td>
  3456. <em>(Optional)</em>
  3457. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3458. Deprecated: Use NamespaceSelectors instead.</p>
  3459. </td>
  3460. </tr>
  3461. <tr>
  3462. <td>
  3463. <code>refreshTime</code></br>
  3464. <em>
  3465. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3466. Kubernetes meta/v1.Duration
  3467. </a>
  3468. </em>
  3469. </td>
  3470. <td>
  3471. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3472. </td>
  3473. </tr>
  3474. </table>
  3475. </td>
  3476. </tr>
  3477. <tr>
  3478. <td>
  3479. <code>status</code></br>
  3480. <em>
  3481. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3482. ClusterExternalSecretStatus
  3483. </a>
  3484. </em>
  3485. </td>
  3486. <td>
  3487. </td>
  3488. </tr>
  3489. </tbody>
  3490. </table>
  3491. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3492. (<code>string</code> alias)</p></h3>
  3493. <p>
  3494. (<em>Appears on:</em>
  3495. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3496. </p>
  3497. <p>
  3498. <p>ClusterExternalSecretConditionType defines a value type for ClusterExternalSecret conditions.</p>
  3499. </p>
  3500. <table>
  3501. <thead>
  3502. <tr>
  3503. <th>Value</th>
  3504. <th>Description</th>
  3505. </tr>
  3506. </thead>
  3507. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3508. <td><p>ClusterExternalSecretReady is a ClusterExternalSecretConditionType set when the ClusterExternalSecret is ready.</p>
  3509. </td>
  3510. </tr></tbody>
  3511. </table>
  3512. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3513. </h3>
  3514. <p>
  3515. (<em>Appears on:</em>
  3516. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3517. </p>
  3518. <p>
  3519. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3520. </p>
  3521. <table>
  3522. <thead>
  3523. <tr>
  3524. <th>Field</th>
  3525. <th>Description</th>
  3526. </tr>
  3527. </thead>
  3528. <tbody>
  3529. <tr>
  3530. <td>
  3531. <code>namespace</code></br>
  3532. <em>
  3533. string
  3534. </em>
  3535. </td>
  3536. <td>
  3537. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3538. </td>
  3539. </tr>
  3540. <tr>
  3541. <td>
  3542. <code>reason</code></br>
  3543. <em>
  3544. string
  3545. </em>
  3546. </td>
  3547. <td>
  3548. <em>(Optional)</em>
  3549. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3550. </td>
  3551. </tr>
  3552. </tbody>
  3553. </table>
  3554. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3555. </h3>
  3556. <p>
  3557. (<em>Appears on:</em>
  3558. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3559. </p>
  3560. <p>
  3561. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3562. </p>
  3563. <table>
  3564. <thead>
  3565. <tr>
  3566. <th>Field</th>
  3567. <th>Description</th>
  3568. </tr>
  3569. </thead>
  3570. <tbody>
  3571. <tr>
  3572. <td>
  3573. <code>externalSecretSpec</code></br>
  3574. <em>
  3575. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3576. ExternalSecretSpec
  3577. </a>
  3578. </em>
  3579. </td>
  3580. <td>
  3581. <p>The spec for the ExternalSecrets to be created</p>
  3582. </td>
  3583. </tr>
  3584. <tr>
  3585. <td>
  3586. <code>externalSecretName</code></br>
  3587. <em>
  3588. string
  3589. </em>
  3590. </td>
  3591. <td>
  3592. <em>(Optional)</em>
  3593. <p>The name of the external secrets to be created.
  3594. Defaults to the name of the ClusterExternalSecret</p>
  3595. </td>
  3596. </tr>
  3597. <tr>
  3598. <td>
  3599. <code>externalSecretMetadata</code></br>
  3600. <em>
  3601. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3602. ExternalSecretMetadata
  3603. </a>
  3604. </em>
  3605. </td>
  3606. <td>
  3607. <em>(Optional)</em>
  3608. <p>The metadata of the external secrets to be created</p>
  3609. </td>
  3610. </tr>
  3611. <tr>
  3612. <td>
  3613. <code>namespaceSelector</code></br>
  3614. <em>
  3615. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3616. Kubernetes meta/v1.LabelSelector
  3617. </a>
  3618. </em>
  3619. </td>
  3620. <td>
  3621. <em>(Optional)</em>
  3622. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3623. Deprecated: Use NamespaceSelectors instead.</p>
  3624. </td>
  3625. </tr>
  3626. <tr>
  3627. <td>
  3628. <code>namespaceSelectors</code></br>
  3629. <em>
  3630. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3631. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3632. </a>
  3633. </em>
  3634. </td>
  3635. <td>
  3636. <em>(Optional)</em>
  3637. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3638. </td>
  3639. </tr>
  3640. <tr>
  3641. <td>
  3642. <code>namespaces</code></br>
  3643. <em>
  3644. []string
  3645. </em>
  3646. </td>
  3647. <td>
  3648. <em>(Optional)</em>
  3649. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3650. Deprecated: Use NamespaceSelectors instead.</p>
  3651. </td>
  3652. </tr>
  3653. <tr>
  3654. <td>
  3655. <code>refreshTime</code></br>
  3656. <em>
  3657. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3658. Kubernetes meta/v1.Duration
  3659. </a>
  3660. </em>
  3661. </td>
  3662. <td>
  3663. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3664. </td>
  3665. </tr>
  3666. </tbody>
  3667. </table>
  3668. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3669. </h3>
  3670. <p>
  3671. (<em>Appears on:</em>
  3672. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3673. </p>
  3674. <p>
  3675. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3676. </p>
  3677. <table>
  3678. <thead>
  3679. <tr>
  3680. <th>Field</th>
  3681. <th>Description</th>
  3682. </tr>
  3683. </thead>
  3684. <tbody>
  3685. <tr>
  3686. <td>
  3687. <code>externalSecretName</code></br>
  3688. <em>
  3689. string
  3690. </em>
  3691. </td>
  3692. <td>
  3693. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3694. </td>
  3695. </tr>
  3696. <tr>
  3697. <td>
  3698. <code>failedNamespaces</code></br>
  3699. <em>
  3700. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3701. []ClusterExternalSecretNamespaceFailure
  3702. </a>
  3703. </em>
  3704. </td>
  3705. <td>
  3706. <em>(Optional)</em>
  3707. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3708. </td>
  3709. </tr>
  3710. <tr>
  3711. <td>
  3712. <code>provisionedNamespaces</code></br>
  3713. <em>
  3714. []string
  3715. </em>
  3716. </td>
  3717. <td>
  3718. <em>(Optional)</em>
  3719. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3720. </td>
  3721. </tr>
  3722. <tr>
  3723. <td>
  3724. <code>conditions</code></br>
  3725. <em>
  3726. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3727. []ClusterExternalSecretStatusCondition
  3728. </a>
  3729. </em>
  3730. </td>
  3731. <td>
  3732. <em>(Optional)</em>
  3733. </td>
  3734. </tr>
  3735. </tbody>
  3736. </table>
  3737. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3738. </h3>
  3739. <p>
  3740. (<em>Appears on:</em>
  3741. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3742. </p>
  3743. <p>
  3744. <p>ClusterExternalSecretStatusCondition defines the observed state of a ClusterExternalSecret resource.</p>
  3745. </p>
  3746. <table>
  3747. <thead>
  3748. <tr>
  3749. <th>Field</th>
  3750. <th>Description</th>
  3751. </tr>
  3752. </thead>
  3753. <tbody>
  3754. <tr>
  3755. <td>
  3756. <code>type</code></br>
  3757. <em>
  3758. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3759. ClusterExternalSecretConditionType
  3760. </a>
  3761. </em>
  3762. </td>
  3763. <td>
  3764. </td>
  3765. </tr>
  3766. <tr>
  3767. <td>
  3768. <code>status</code></br>
  3769. <em>
  3770. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3771. Kubernetes core/v1.ConditionStatus
  3772. </a>
  3773. </em>
  3774. </td>
  3775. <td>
  3776. </td>
  3777. </tr>
  3778. <tr>
  3779. <td>
  3780. <code>message</code></br>
  3781. <em>
  3782. string
  3783. </em>
  3784. </td>
  3785. <td>
  3786. <em>(Optional)</em>
  3787. </td>
  3788. </tr>
  3789. </tbody>
  3790. </table>
  3791. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3792. </h3>
  3793. <p>
  3794. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3795. </p>
  3796. <table>
  3797. <thead>
  3798. <tr>
  3799. <th>Field</th>
  3800. <th>Description</th>
  3801. </tr>
  3802. </thead>
  3803. <tbody>
  3804. <tr>
  3805. <td>
  3806. <code>metadata</code></br>
  3807. <em>
  3808. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3809. Kubernetes meta/v1.ObjectMeta
  3810. </a>
  3811. </em>
  3812. </td>
  3813. <td>
  3814. Refer to the Kubernetes API documentation for the fields of the
  3815. <code>metadata</code> field.
  3816. </td>
  3817. </tr>
  3818. <tr>
  3819. <td>
  3820. <code>spec</code></br>
  3821. <em>
  3822. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3823. SecretStoreSpec
  3824. </a>
  3825. </em>
  3826. </td>
  3827. <td>
  3828. <br/>
  3829. <br/>
  3830. <table>
  3831. <tr>
  3832. <td>
  3833. <code>controller</code></br>
  3834. <em>
  3835. string
  3836. </em>
  3837. </td>
  3838. <td>
  3839. <em>(Optional)</em>
  3840. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3841. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3842. </td>
  3843. </tr>
  3844. <tr>
  3845. <td>
  3846. <code>provider</code></br>
  3847. <em>
  3848. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3849. SecretStoreProvider
  3850. </a>
  3851. </em>
  3852. </td>
  3853. <td>
  3854. <p>Used to configure the provider. Only one provider may be set</p>
  3855. </td>
  3856. </tr>
  3857. <tr>
  3858. <td>
  3859. <code>retrySettings</code></br>
  3860. <em>
  3861. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3862. SecretStoreRetrySettings
  3863. </a>
  3864. </em>
  3865. </td>
  3866. <td>
  3867. <em>(Optional)</em>
  3868. <p>Used to configure http retries if failed</p>
  3869. </td>
  3870. </tr>
  3871. <tr>
  3872. <td>
  3873. <code>refreshInterval</code></br>
  3874. <em>
  3875. int
  3876. </em>
  3877. </td>
  3878. <td>
  3879. <em>(Optional)</em>
  3880. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3881. </td>
  3882. </tr>
  3883. <tr>
  3884. <td>
  3885. <code>conditions</code></br>
  3886. <em>
  3887. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3888. []ClusterSecretStoreCondition
  3889. </a>
  3890. </em>
  3891. </td>
  3892. <td>
  3893. <em>(Optional)</em>
  3894. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3895. </td>
  3896. </tr>
  3897. </table>
  3898. </td>
  3899. </tr>
  3900. <tr>
  3901. <td>
  3902. <code>status</code></br>
  3903. <em>
  3904. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3905. SecretStoreStatus
  3906. </a>
  3907. </em>
  3908. </td>
  3909. <td>
  3910. </td>
  3911. </tr>
  3912. </tbody>
  3913. </table>
  3914. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3915. </h3>
  3916. <p>
  3917. (<em>Appears on:</em>
  3918. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3919. </p>
  3920. <p>
  3921. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3922. for a ClusterSecretStore instance.</p>
  3923. </p>
  3924. <table>
  3925. <thead>
  3926. <tr>
  3927. <th>Field</th>
  3928. <th>Description</th>
  3929. </tr>
  3930. </thead>
  3931. <tbody>
  3932. <tr>
  3933. <td>
  3934. <code>namespaceSelector</code></br>
  3935. <em>
  3936. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3937. Kubernetes meta/v1.LabelSelector
  3938. </a>
  3939. </em>
  3940. </td>
  3941. <td>
  3942. <em>(Optional)</em>
  3943. <p>Choose namespace using a labelSelector</p>
  3944. </td>
  3945. </tr>
  3946. <tr>
  3947. <td>
  3948. <code>namespaces</code></br>
  3949. <em>
  3950. []string
  3951. </em>
  3952. </td>
  3953. <td>
  3954. <em>(Optional)</em>
  3955. <p>Choose namespaces by name</p>
  3956. </td>
  3957. </tr>
  3958. <tr>
  3959. <td>
  3960. <code>namespaceRegexes</code></br>
  3961. <em>
  3962. []string
  3963. </em>
  3964. </td>
  3965. <td>
  3966. <em>(Optional)</em>
  3967. <p>Choose namespaces by using regex matching</p>
  3968. </td>
  3969. </tr>
  3970. </tbody>
  3971. </table>
  3972. <h3 id="external-secrets.io/v1.ConfigMapReference">ConfigMapReference
  3973. </h3>
  3974. <p>
  3975. (<em>Appears on:</em>
  3976. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  3977. </p>
  3978. <p>
  3979. <p>ConfigMapReference holds the details of a configmap.</p>
  3980. </p>
  3981. <table>
  3982. <thead>
  3983. <tr>
  3984. <th>Field</th>
  3985. <th>Description</th>
  3986. </tr>
  3987. </thead>
  3988. <tbody>
  3989. <tr>
  3990. <td>
  3991. <code>name</code></br>
  3992. <em>
  3993. string
  3994. </em>
  3995. </td>
  3996. <td>
  3997. <p>name of the configmap.</p>
  3998. </td>
  3999. </tr>
  4000. <tr>
  4001. <td>
  4002. <code>namespace</code></br>
  4003. <em>
  4004. string
  4005. </em>
  4006. </td>
  4007. <td>
  4008. <p>namespace in which the configmap exists. If empty, configmap will looked up in local namespace.</p>
  4009. </td>
  4010. </tr>
  4011. <tr>
  4012. <td>
  4013. <code>key</code></br>
  4014. <em>
  4015. string
  4016. </em>
  4017. </td>
  4018. <td>
  4019. <p>key name holding the external account credential config.</p>
  4020. </td>
  4021. </tr>
  4022. </tbody>
  4023. </table>
  4024. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  4025. </h3>
  4026. <p>
  4027. (<em>Appears on:</em>
  4028. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  4029. </p>
  4030. <p>
  4031. <p>ConjurAPIKey contains references to a Secret resource that holds
  4032. the Conjur username and API key.</p>
  4033. </p>
  4034. <table>
  4035. <thead>
  4036. <tr>
  4037. <th>Field</th>
  4038. <th>Description</th>
  4039. </tr>
  4040. </thead>
  4041. <tbody>
  4042. <tr>
  4043. <td>
  4044. <code>account</code></br>
  4045. <em>
  4046. string
  4047. </em>
  4048. </td>
  4049. <td>
  4050. <p>Account is the Conjur organization account name.</p>
  4051. </td>
  4052. </tr>
  4053. <tr>
  4054. <td>
  4055. <code>userRef</code></br>
  4056. <em>
  4057. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4058. External Secrets meta/v1.SecretKeySelector
  4059. </a>
  4060. </em>
  4061. </td>
  4062. <td>
  4063. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  4064. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4065. </td>
  4066. </tr>
  4067. <tr>
  4068. <td>
  4069. <code>apiKeyRef</code></br>
  4070. <em>
  4071. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4072. External Secrets meta/v1.SecretKeySelector
  4073. </a>
  4074. </em>
  4075. </td>
  4076. <td>
  4077. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  4078. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4079. </td>
  4080. </tr>
  4081. </tbody>
  4082. </table>
  4083. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  4084. </h3>
  4085. <p>
  4086. (<em>Appears on:</em>
  4087. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  4088. </p>
  4089. <p>
  4090. <p>ConjurAuth is the way to provide authentication credentials to the ConjurProvider.</p>
  4091. </p>
  4092. <table>
  4093. <thead>
  4094. <tr>
  4095. <th>Field</th>
  4096. <th>Description</th>
  4097. </tr>
  4098. </thead>
  4099. <tbody>
  4100. <tr>
  4101. <td>
  4102. <code>apikey</code></br>
  4103. <em>
  4104. <a href="#external-secrets.io/v1.ConjurAPIKey">
  4105. ConjurAPIKey
  4106. </a>
  4107. </em>
  4108. </td>
  4109. <td>
  4110. <em>(Optional)</em>
  4111. <p>Authenticates with Conjur using an API key.</p>
  4112. </td>
  4113. </tr>
  4114. <tr>
  4115. <td>
  4116. <code>jwt</code></br>
  4117. <em>
  4118. <a href="#external-secrets.io/v1.ConjurJWT">
  4119. ConjurJWT
  4120. </a>
  4121. </em>
  4122. </td>
  4123. <td>
  4124. <em>(Optional)</em>
  4125. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  4126. </td>
  4127. </tr>
  4128. </tbody>
  4129. </table>
  4130. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  4131. </h3>
  4132. <p>
  4133. (<em>Appears on:</em>
  4134. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  4135. </p>
  4136. <p>
  4137. <p>ConjurJWT defines the JWT authentication configuration for Conjur provider.</p>
  4138. </p>
  4139. <table>
  4140. <thead>
  4141. <tr>
  4142. <th>Field</th>
  4143. <th>Description</th>
  4144. </tr>
  4145. </thead>
  4146. <tbody>
  4147. <tr>
  4148. <td>
  4149. <code>account</code></br>
  4150. <em>
  4151. string
  4152. </em>
  4153. </td>
  4154. <td>
  4155. <p>Account is the Conjur organization account name.</p>
  4156. </td>
  4157. </tr>
  4158. <tr>
  4159. <td>
  4160. <code>serviceID</code></br>
  4161. <em>
  4162. string
  4163. </em>
  4164. </td>
  4165. <td>
  4166. <p>The conjur authn jwt webservice id</p>
  4167. </td>
  4168. </tr>
  4169. <tr>
  4170. <td>
  4171. <code>hostId</code></br>
  4172. <em>
  4173. string
  4174. </em>
  4175. </td>
  4176. <td>
  4177. <em>(Optional)</em>
  4178. <p>Optional HostID for JWT authentication. This may be used depending
  4179. on how the Conjur JWT authenticator policy is configured.</p>
  4180. </td>
  4181. </tr>
  4182. <tr>
  4183. <td>
  4184. <code>secretRef</code></br>
  4185. <em>
  4186. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4187. External Secrets meta/v1.SecretKeySelector
  4188. </a>
  4189. </em>
  4190. </td>
  4191. <td>
  4192. <em>(Optional)</em>
  4193. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  4194. authenticate with Conjur using the JWT authentication method.</p>
  4195. </td>
  4196. </tr>
  4197. <tr>
  4198. <td>
  4199. <code>serviceAccountRef</code></br>
  4200. <em>
  4201. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4202. External Secrets meta/v1.ServiceAccountSelector
  4203. </a>
  4204. </em>
  4205. </td>
  4206. <td>
  4207. <em>(Optional)</em>
  4208. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  4209. a token for with the <code>TokenRequest</code> API.</p>
  4210. </td>
  4211. </tr>
  4212. </tbody>
  4213. </table>
  4214. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  4215. </h3>
  4216. <p>
  4217. (<em>Appears on:</em>
  4218. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4219. </p>
  4220. <p>
  4221. <p>ConjurProvider provides access to a Conjur provider.</p>
  4222. </p>
  4223. <table>
  4224. <thead>
  4225. <tr>
  4226. <th>Field</th>
  4227. <th>Description</th>
  4228. </tr>
  4229. </thead>
  4230. <tbody>
  4231. <tr>
  4232. <td>
  4233. <code>url</code></br>
  4234. <em>
  4235. string
  4236. </em>
  4237. </td>
  4238. <td>
  4239. <p>URL is the endpoint of the Conjur instance.</p>
  4240. </td>
  4241. </tr>
  4242. <tr>
  4243. <td>
  4244. <code>caBundle</code></br>
  4245. <em>
  4246. string
  4247. </em>
  4248. </td>
  4249. <td>
  4250. <em>(Optional)</em>
  4251. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  4252. </td>
  4253. </tr>
  4254. <tr>
  4255. <td>
  4256. <code>caProvider</code></br>
  4257. <em>
  4258. <a href="#external-secrets.io/v1.CAProvider">
  4259. CAProvider
  4260. </a>
  4261. </em>
  4262. </td>
  4263. <td>
  4264. <em>(Optional)</em>
  4265. <p>Used to provide custom certificate authority (CA) certificates
  4266. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  4267. that contains a PEM-encoded certificate.</p>
  4268. </td>
  4269. </tr>
  4270. <tr>
  4271. <td>
  4272. <code>auth</code></br>
  4273. <em>
  4274. <a href="#external-secrets.io/v1.ConjurAuth">
  4275. ConjurAuth
  4276. </a>
  4277. </em>
  4278. </td>
  4279. <td>
  4280. <p>Defines authentication settings for connecting to Conjur.</p>
  4281. </td>
  4282. </tr>
  4283. </tbody>
  4284. </table>
  4285. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  4286. </h3>
  4287. <p>
  4288. (<em>Appears on:</em>
  4289. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4290. </p>
  4291. <p>
  4292. <p>DelineaProvider provides access to Delinea secrets vault Server.
  4293. See: <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  4294. </p>
  4295. <table>
  4296. <thead>
  4297. <tr>
  4298. <th>Field</th>
  4299. <th>Description</th>
  4300. </tr>
  4301. </thead>
  4302. <tbody>
  4303. <tr>
  4304. <td>
  4305. <code>clientId</code></br>
  4306. <em>
  4307. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4308. DelineaProviderSecretRef
  4309. </a>
  4310. </em>
  4311. </td>
  4312. <td>
  4313. <p>ClientID is the non-secret part of the credential.</p>
  4314. </td>
  4315. </tr>
  4316. <tr>
  4317. <td>
  4318. <code>clientSecret</code></br>
  4319. <em>
  4320. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4321. DelineaProviderSecretRef
  4322. </a>
  4323. </em>
  4324. </td>
  4325. <td>
  4326. <p>ClientSecret is the secret part of the credential.</p>
  4327. </td>
  4328. </tr>
  4329. <tr>
  4330. <td>
  4331. <code>tenant</code></br>
  4332. <em>
  4333. string
  4334. </em>
  4335. </td>
  4336. <td>
  4337. <p>Tenant is the chosen hostname / site name.</p>
  4338. </td>
  4339. </tr>
  4340. <tr>
  4341. <td>
  4342. <code>urlTemplate</code></br>
  4343. <em>
  4344. string
  4345. </em>
  4346. </td>
  4347. <td>
  4348. <em>(Optional)</em>
  4349. <p>URLTemplate
  4350. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  4351. </td>
  4352. </tr>
  4353. <tr>
  4354. <td>
  4355. <code>tld</code></br>
  4356. <em>
  4357. string
  4358. </em>
  4359. </td>
  4360. <td>
  4361. <em>(Optional)</em>
  4362. <p>TLD is based on the server location that was chosen during provisioning.
  4363. If unset, defaults to &ldquo;com&rdquo;.</p>
  4364. </td>
  4365. </tr>
  4366. </tbody>
  4367. </table>
  4368. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  4369. </h3>
  4370. <p>
  4371. (<em>Appears on:</em>
  4372. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  4373. </p>
  4374. <p>
  4375. <p>DelineaProviderSecretRef is a secret reference containing either a direct value or a reference to a secret key.</p>
  4376. </p>
  4377. <table>
  4378. <thead>
  4379. <tr>
  4380. <th>Field</th>
  4381. <th>Description</th>
  4382. </tr>
  4383. </thead>
  4384. <tbody>
  4385. <tr>
  4386. <td>
  4387. <code>value</code></br>
  4388. <em>
  4389. string
  4390. </em>
  4391. </td>
  4392. <td>
  4393. <em>(Optional)</em>
  4394. <p>Value can be specified directly to set a value without using a secret.</p>
  4395. </td>
  4396. </tr>
  4397. <tr>
  4398. <td>
  4399. <code>secretRef</code></br>
  4400. <em>
  4401. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4402. External Secrets meta/v1.SecretKeySelector
  4403. </a>
  4404. </em>
  4405. </td>
  4406. <td>
  4407. <em>(Optional)</em>
  4408. <p>SecretRef references a key in a secret that will be used as value.</p>
  4409. </td>
  4410. </tr>
  4411. </tbody>
  4412. </table>
  4413. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4414. </h3>
  4415. <p>
  4416. (<em>Appears on:</em>
  4417. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4418. </p>
  4419. <p>
  4420. <p>Device42Auth defines the authentication method for the Device42 provider.</p>
  4421. </p>
  4422. <table>
  4423. <thead>
  4424. <tr>
  4425. <th>Field</th>
  4426. <th>Description</th>
  4427. </tr>
  4428. </thead>
  4429. <tbody>
  4430. <tr>
  4431. <td>
  4432. <code>secretRef</code></br>
  4433. <em>
  4434. <a href="#external-secrets.io/v1.Device42SecretRef">
  4435. Device42SecretRef
  4436. </a>
  4437. </em>
  4438. </td>
  4439. <td>
  4440. </td>
  4441. </tr>
  4442. </tbody>
  4443. </table>
  4444. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4445. </h3>
  4446. <p>
  4447. (<em>Appears on:</em>
  4448. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4449. </p>
  4450. <p>
  4451. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4452. </p>
  4453. <table>
  4454. <thead>
  4455. <tr>
  4456. <th>Field</th>
  4457. <th>Description</th>
  4458. </tr>
  4459. </thead>
  4460. <tbody>
  4461. <tr>
  4462. <td>
  4463. <code>host</code></br>
  4464. <em>
  4465. string
  4466. </em>
  4467. </td>
  4468. <td>
  4469. <p>URL configures the Device42 instance URL.</p>
  4470. </td>
  4471. </tr>
  4472. <tr>
  4473. <td>
  4474. <code>auth</code></br>
  4475. <em>
  4476. <a href="#external-secrets.io/v1.Device42Auth">
  4477. Device42Auth
  4478. </a>
  4479. </em>
  4480. </td>
  4481. <td>
  4482. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4483. </td>
  4484. </tr>
  4485. </tbody>
  4486. </table>
  4487. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4488. </h3>
  4489. <p>
  4490. (<em>Appears on:</em>
  4491. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4492. </p>
  4493. <p>
  4494. <p>Device42SecretRef contains the secret reference for accessing the Device42 instance.</p>
  4495. </p>
  4496. <table>
  4497. <thead>
  4498. <tr>
  4499. <th>Field</th>
  4500. <th>Description</th>
  4501. </tr>
  4502. </thead>
  4503. <tbody>
  4504. <tr>
  4505. <td>
  4506. <code>credentials</code></br>
  4507. <em>
  4508. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4509. External Secrets meta/v1.SecretKeySelector
  4510. </a>
  4511. </em>
  4512. </td>
  4513. <td>
  4514. <em>(Optional)</em>
  4515. <p>Username / Password is used for authentication.</p>
  4516. </td>
  4517. </tr>
  4518. </tbody>
  4519. </table>
  4520. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4521. </h3>
  4522. <p>
  4523. (<em>Appears on:</em>
  4524. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4525. </p>
  4526. <p>
  4527. <p>DopplerAuth defines the authentication method for the Doppler provider.</p>
  4528. </p>
  4529. <table>
  4530. <thead>
  4531. <tr>
  4532. <th>Field</th>
  4533. <th>Description</th>
  4534. </tr>
  4535. </thead>
  4536. <tbody>
  4537. <tr>
  4538. <td>
  4539. <code>secretRef</code></br>
  4540. <em>
  4541. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4542. DopplerAuthSecretRef
  4543. </a>
  4544. </em>
  4545. </td>
  4546. <td>
  4547. </td>
  4548. </tr>
  4549. </tbody>
  4550. </table>
  4551. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4552. </h3>
  4553. <p>
  4554. (<em>Appears on:</em>
  4555. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4556. </p>
  4557. <p>
  4558. <p>DopplerAuthSecretRef contains the secret reference for accessing the Doppler API.</p>
  4559. </p>
  4560. <table>
  4561. <thead>
  4562. <tr>
  4563. <th>Field</th>
  4564. <th>Description</th>
  4565. </tr>
  4566. </thead>
  4567. <tbody>
  4568. <tr>
  4569. <td>
  4570. <code>dopplerToken</code></br>
  4571. <em>
  4572. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4573. External Secrets meta/v1.SecretKeySelector
  4574. </a>
  4575. </em>
  4576. </td>
  4577. <td>
  4578. <p>The DopplerToken is used for authentication.
  4579. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4580. The Key attribute defaults to dopplerToken if not specified.</p>
  4581. </td>
  4582. </tr>
  4583. </tbody>
  4584. </table>
  4585. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4586. </h3>
  4587. <p>
  4588. (<em>Appears on:</em>
  4589. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4590. </p>
  4591. <p>
  4592. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4593. Project and Config are required if not using a Service Token.</p>
  4594. </p>
  4595. <table>
  4596. <thead>
  4597. <tr>
  4598. <th>Field</th>
  4599. <th>Description</th>
  4600. </tr>
  4601. </thead>
  4602. <tbody>
  4603. <tr>
  4604. <td>
  4605. <code>auth</code></br>
  4606. <em>
  4607. <a href="#external-secrets.io/v1.DopplerAuth">
  4608. DopplerAuth
  4609. </a>
  4610. </em>
  4611. </td>
  4612. <td>
  4613. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4614. </td>
  4615. </tr>
  4616. <tr>
  4617. <td>
  4618. <code>project</code></br>
  4619. <em>
  4620. string
  4621. </em>
  4622. </td>
  4623. <td>
  4624. <em>(Optional)</em>
  4625. <p>Doppler project (required if not using a Service Token)</p>
  4626. </td>
  4627. </tr>
  4628. <tr>
  4629. <td>
  4630. <code>config</code></br>
  4631. <em>
  4632. string
  4633. </em>
  4634. </td>
  4635. <td>
  4636. <em>(Optional)</em>
  4637. <p>Doppler config (required if not using a Service Token)</p>
  4638. </td>
  4639. </tr>
  4640. <tr>
  4641. <td>
  4642. <code>nameTransformer</code></br>
  4643. <em>
  4644. string
  4645. </em>
  4646. </td>
  4647. <td>
  4648. <em>(Optional)</em>
  4649. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4650. </td>
  4651. </tr>
  4652. <tr>
  4653. <td>
  4654. <code>format</code></br>
  4655. <em>
  4656. string
  4657. </em>
  4658. </td>
  4659. <td>
  4660. <em>(Optional)</em>
  4661. <p>Format enables the downloading of secrets as a file (string)</p>
  4662. </td>
  4663. </tr>
  4664. </tbody>
  4665. </table>
  4666. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4667. </h3>
  4668. <p>
  4669. <p>ExternalSecret is the Schema for the external-secrets API.
  4670. It defines how to fetch data from external APIs and make it available as Kubernetes Secrets.</p>
  4671. </p>
  4672. <table>
  4673. <thead>
  4674. <tr>
  4675. <th>Field</th>
  4676. <th>Description</th>
  4677. </tr>
  4678. </thead>
  4679. <tbody>
  4680. <tr>
  4681. <td>
  4682. <code>metadata</code></br>
  4683. <em>
  4684. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4685. Kubernetes meta/v1.ObjectMeta
  4686. </a>
  4687. </em>
  4688. </td>
  4689. <td>
  4690. Refer to the Kubernetes API documentation for the fields of the
  4691. <code>metadata</code> field.
  4692. </td>
  4693. </tr>
  4694. <tr>
  4695. <td>
  4696. <code>spec</code></br>
  4697. <em>
  4698. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4699. ExternalSecretSpec
  4700. </a>
  4701. </em>
  4702. </td>
  4703. <td>
  4704. <br/>
  4705. <br/>
  4706. <table>
  4707. <tr>
  4708. <td>
  4709. <code>secretStoreRef</code></br>
  4710. <em>
  4711. <a href="#external-secrets.io/v1.SecretStoreRef">
  4712. SecretStoreRef
  4713. </a>
  4714. </em>
  4715. </td>
  4716. <td>
  4717. <em>(Optional)</em>
  4718. </td>
  4719. </tr>
  4720. <tr>
  4721. <td>
  4722. <code>target</code></br>
  4723. <em>
  4724. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4725. ExternalSecretTarget
  4726. </a>
  4727. </em>
  4728. </td>
  4729. <td>
  4730. <em>(Optional)</em>
  4731. </td>
  4732. </tr>
  4733. <tr>
  4734. <td>
  4735. <code>refreshPolicy</code></br>
  4736. <em>
  4737. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4738. ExternalSecretRefreshPolicy
  4739. </a>
  4740. </em>
  4741. </td>
  4742. <td>
  4743. <em>(Optional)</em>
  4744. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4745. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4746. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4747. No periodic updates occur if refreshInterval is 0.
  4748. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4749. </td>
  4750. </tr>
  4751. <tr>
  4752. <td>
  4753. <code>refreshInterval</code></br>
  4754. <em>
  4755. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4756. Kubernetes meta/v1.Duration
  4757. </a>
  4758. </em>
  4759. </td>
  4760. <td>
  4761. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4762. specified as Golang Duration strings.
  4763. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4764. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4765. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4766. </td>
  4767. </tr>
  4768. <tr>
  4769. <td>
  4770. <code>data</code></br>
  4771. <em>
  4772. <a href="#external-secrets.io/v1.ExternalSecretData">
  4773. []ExternalSecretData
  4774. </a>
  4775. </em>
  4776. </td>
  4777. <td>
  4778. <em>(Optional)</em>
  4779. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4780. </td>
  4781. </tr>
  4782. <tr>
  4783. <td>
  4784. <code>dataFrom</code></br>
  4785. <em>
  4786. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4787. []ExternalSecretDataFromRemoteRef
  4788. </a>
  4789. </em>
  4790. </td>
  4791. <td>
  4792. <em>(Optional)</em>
  4793. <p>DataFrom is used to fetch all properties from a specific Provider data
  4794. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4795. </td>
  4796. </tr>
  4797. </table>
  4798. </td>
  4799. </tr>
  4800. <tr>
  4801. <td>
  4802. <code>status</code></br>
  4803. <em>
  4804. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4805. ExternalSecretStatus
  4806. </a>
  4807. </em>
  4808. </td>
  4809. <td>
  4810. </td>
  4811. </tr>
  4812. </tbody>
  4813. </table>
  4814. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4815. (<code>string</code> alias)</p></h3>
  4816. <p>
  4817. (<em>Appears on:</em>
  4818. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4819. </p>
  4820. <p>
  4821. <p>ExternalSecretConditionType defines a value type for ExternalSecret conditions.</p>
  4822. </p>
  4823. <table>
  4824. <thead>
  4825. <tr>
  4826. <th>Value</th>
  4827. <th>Description</th>
  4828. </tr>
  4829. </thead>
  4830. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4831. <td><p>ExternalSecretDeleted indicates that the external secret has been deleted.</p>
  4832. </td>
  4833. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4834. <td><p>ExternalSecretReady indicates that the external secret is ready and synced.</p>
  4835. </td>
  4836. </tr></tbody>
  4837. </table>
  4838. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4839. (<code>string</code> alias)</p></h3>
  4840. <p>
  4841. (<em>Appears on:</em>
  4842. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4843. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4844. </p>
  4845. <p>
  4846. <p>ExternalSecretConversionStrategy defines strategies for converting secret values.</p>
  4847. </p>
  4848. <table>
  4849. <thead>
  4850. <tr>
  4851. <th>Value</th>
  4852. <th>Description</th>
  4853. </tr>
  4854. </thead>
  4855. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4856. <td><p>ExternalSecretConversionDefault specifies the default conversion strategy.</p>
  4857. </td>
  4858. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4859. <td><p>ExternalSecretConversionUnicode specifies that values should be treated as Unicode.</p>
  4860. </td>
  4861. </tr></tbody>
  4862. </table>
  4863. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4864. (<code>string</code> alias)</p></h3>
  4865. <p>
  4866. (<em>Appears on:</em>
  4867. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4868. </p>
  4869. <p>
  4870. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4871. </p>
  4872. <table>
  4873. <thead>
  4874. <tr>
  4875. <th>Value</th>
  4876. <th>Description</th>
  4877. </tr>
  4878. </thead>
  4879. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4880. <td><p>CreatePolicyMerge does not create the Secret, but merges the data fields to the Secret.</p>
  4881. </td>
  4882. </tr><tr><td><p>&#34;None&#34;</p></td>
  4883. <td><p>CreatePolicyNone does not create a Secret (future use with injector).</p>
  4884. </td>
  4885. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4886. <td><p>CreatePolicyOrphan creates the Secret and does not set the ownerReference.
  4887. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4888. </td>
  4889. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4890. <td><p>CreatePolicyOwner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4891. </td>
  4892. </tr></tbody>
  4893. </table>
  4894. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4895. </h3>
  4896. <p>
  4897. (<em>Appears on:</em>
  4898. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4899. </p>
  4900. <p>
  4901. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4902. </p>
  4903. <table>
  4904. <thead>
  4905. <tr>
  4906. <th>Field</th>
  4907. <th>Description</th>
  4908. </tr>
  4909. </thead>
  4910. <tbody>
  4911. <tr>
  4912. <td>
  4913. <code>secretKey</code></br>
  4914. <em>
  4915. string
  4916. </em>
  4917. </td>
  4918. <td>
  4919. <p>The key in the Kubernetes Secret to store the value.</p>
  4920. </td>
  4921. </tr>
  4922. <tr>
  4923. <td>
  4924. <code>remoteRef</code></br>
  4925. <em>
  4926. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4927. ExternalSecretDataRemoteRef
  4928. </a>
  4929. </em>
  4930. </td>
  4931. <td>
  4932. <p>RemoteRef points to the remote secret and defines
  4933. which secret (version/property/..) to fetch.</p>
  4934. </td>
  4935. </tr>
  4936. <tr>
  4937. <td>
  4938. <code>sourceRef</code></br>
  4939. <em>
  4940. <a href="#external-secrets.io/v1.StoreSourceRef">
  4941. StoreSourceRef
  4942. </a>
  4943. </em>
  4944. </td>
  4945. <td>
  4946. <p>SourceRef allows you to override the source
  4947. from which the value will be pulled.</p>
  4948. </td>
  4949. </tr>
  4950. </tbody>
  4951. </table>
  4952. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4953. </h3>
  4954. <p>
  4955. (<em>Appears on:</em>
  4956. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4957. </p>
  4958. <p>
  4959. <p>ExternalSecretDataFromRemoteRef defines the connection between the Kubernetes Secret keys and the Provider data
  4960. when using DataFrom to fetch multiple values from a Provider.</p>
  4961. </p>
  4962. <table>
  4963. <thead>
  4964. <tr>
  4965. <th>Field</th>
  4966. <th>Description</th>
  4967. </tr>
  4968. </thead>
  4969. <tbody>
  4970. <tr>
  4971. <td>
  4972. <code>extract</code></br>
  4973. <em>
  4974. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4975. ExternalSecretDataRemoteRef
  4976. </a>
  4977. </em>
  4978. </td>
  4979. <td>
  4980. <em>(Optional)</em>
  4981. <p>Used to extract multiple key/value pairs from one secret
  4982. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4983. </td>
  4984. </tr>
  4985. <tr>
  4986. <td>
  4987. <code>find</code></br>
  4988. <em>
  4989. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4990. ExternalSecretFind
  4991. </a>
  4992. </em>
  4993. </td>
  4994. <td>
  4995. <em>(Optional)</em>
  4996. <p>Used to find secrets based on tags or regular expressions
  4997. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4998. </td>
  4999. </tr>
  5000. <tr>
  5001. <td>
  5002. <code>rewrite</code></br>
  5003. <em>
  5004. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  5005. []ExternalSecretRewrite
  5006. </a>
  5007. </em>
  5008. </td>
  5009. <td>
  5010. <em>(Optional)</em>
  5011. <p>Used to rewrite secret Keys after getting them from the secret Provider
  5012. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  5013. </td>
  5014. </tr>
  5015. <tr>
  5016. <td>
  5017. <code>sourceRef</code></br>
  5018. <em>
  5019. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  5020. StoreGeneratorSourceRef
  5021. </a>
  5022. </em>
  5023. </td>
  5024. <td>
  5025. <p>SourceRef points to a store or generator
  5026. which contains secret values ready to use.
  5027. Use this in combination with Extract or Find pull values out of
  5028. a specific SecretStore.
  5029. When sourceRef points to a generator Extract or Find is not supported.
  5030. The generator returns a static map of values</p>
  5031. </td>
  5032. </tr>
  5033. </tbody>
  5034. </table>
  5035. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  5036. </h3>
  5037. <p>
  5038. (<em>Appears on:</em>
  5039. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  5040. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5041. </p>
  5042. <p>
  5043. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  5044. </p>
  5045. <table>
  5046. <thead>
  5047. <tr>
  5048. <th>Field</th>
  5049. <th>Description</th>
  5050. </tr>
  5051. </thead>
  5052. <tbody>
  5053. <tr>
  5054. <td>
  5055. <code>key</code></br>
  5056. <em>
  5057. string
  5058. </em>
  5059. </td>
  5060. <td>
  5061. <p>Key is the key used in the Provider, mandatory</p>
  5062. </td>
  5063. </tr>
  5064. <tr>
  5065. <td>
  5066. <code>metadataPolicy</code></br>
  5067. <em>
  5068. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  5069. ExternalSecretMetadataPolicy
  5070. </a>
  5071. </em>
  5072. </td>
  5073. <td>
  5074. <em>(Optional)</em>
  5075. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  5076. </td>
  5077. </tr>
  5078. <tr>
  5079. <td>
  5080. <code>property</code></br>
  5081. <em>
  5082. string
  5083. </em>
  5084. </td>
  5085. <td>
  5086. <em>(Optional)</em>
  5087. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  5088. </td>
  5089. </tr>
  5090. <tr>
  5091. <td>
  5092. <code>version</code></br>
  5093. <em>
  5094. string
  5095. </em>
  5096. </td>
  5097. <td>
  5098. <em>(Optional)</em>
  5099. <p>Used to select a specific version of the Provider value, if supported</p>
  5100. </td>
  5101. </tr>
  5102. <tr>
  5103. <td>
  5104. <code>conversionStrategy</code></br>
  5105. <em>
  5106. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5107. ExternalSecretConversionStrategy
  5108. </a>
  5109. </em>
  5110. </td>
  5111. <td>
  5112. <em>(Optional)</em>
  5113. <p>Used to define a conversion Strategy</p>
  5114. </td>
  5115. </tr>
  5116. <tr>
  5117. <td>
  5118. <code>decodingStrategy</code></br>
  5119. <em>
  5120. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5121. ExternalSecretDecodingStrategy
  5122. </a>
  5123. </em>
  5124. </td>
  5125. <td>
  5126. <em>(Optional)</em>
  5127. <p>Used to define a decoding Strategy</p>
  5128. </td>
  5129. </tr>
  5130. </tbody>
  5131. </table>
  5132. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  5133. (<code>string</code> alias)</p></h3>
  5134. <p>
  5135. (<em>Appears on:</em>
  5136. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  5137. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5138. </p>
  5139. <p>
  5140. <p>ExternalSecretDecodingStrategy defines strategies for decoding secret values.</p>
  5141. </p>
  5142. <table>
  5143. <thead>
  5144. <tr>
  5145. <th>Value</th>
  5146. <th>Description</th>
  5147. </tr>
  5148. </thead>
  5149. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  5150. <td><p>ExternalSecretDecodeAuto specifies automatic detection of the decoding method.</p>
  5151. </td>
  5152. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  5153. <td><p>ExternalSecretDecodeBase64 specifies that values should be decoded using Base64.</p>
  5154. </td>
  5155. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  5156. <td><p>ExternalSecretDecodeBase64URL specifies that values should be decoded using Base64URL.</p>
  5157. </td>
  5158. </tr><tr><td><p>&#34;None&#34;</p></td>
  5159. <td><p>ExternalSecretDecodeNone specifies that no decoding should be performed.</p>
  5160. </td>
  5161. </tr></tbody>
  5162. </table>
  5163. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  5164. (<code>string</code> alias)</p></h3>
  5165. <p>
  5166. (<em>Appears on:</em>
  5167. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5168. </p>
  5169. <p>
  5170. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  5171. </p>
  5172. <table>
  5173. <thead>
  5174. <tr>
  5175. <th>Value</th>
  5176. <th>Description</th>
  5177. </tr>
  5178. </thead>
  5179. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  5180. <td><p>DeletionPolicyDelete deletes the secret if all provider secrets are deleted.
  5181. If a secret gets deleted on the provider side and is not accessible
  5182. anymore this is not considered an error and the ExternalSecret
  5183. does not go into SecretSyncedError status.</p>
  5184. </td>
  5185. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  5186. <td><p>DeletionPolicyMerge removes keys in the secret, but not the secret itself.
  5187. If a secret gets deleted on the provider side and is not accessible
  5188. anymore this is not considered an error and the ExternalSecret
  5189. does not go into SecretSyncedError status.</p>
  5190. </td>
  5191. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  5192. <td><p>DeletionPolicyRetain will retain the secret if all provider secrets have been deleted.
  5193. If a provider secret does not exist the ExternalSecret gets into the
  5194. SecretSyncedError status.</p>
  5195. </td>
  5196. </tr></tbody>
  5197. </table>
  5198. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  5199. </h3>
  5200. <p>
  5201. (<em>Appears on:</em>
  5202. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5203. </p>
  5204. <p>
  5205. <p>ExternalSecretFind defines configuration for finding secrets in the provider.</p>
  5206. </p>
  5207. <table>
  5208. <thead>
  5209. <tr>
  5210. <th>Field</th>
  5211. <th>Description</th>
  5212. </tr>
  5213. </thead>
  5214. <tbody>
  5215. <tr>
  5216. <td>
  5217. <code>path</code></br>
  5218. <em>
  5219. string
  5220. </em>
  5221. </td>
  5222. <td>
  5223. <em>(Optional)</em>
  5224. <p>A root path to start the find operations.</p>
  5225. </td>
  5226. </tr>
  5227. <tr>
  5228. <td>
  5229. <code>name</code></br>
  5230. <em>
  5231. <a href="#external-secrets.io/v1.FindName">
  5232. FindName
  5233. </a>
  5234. </em>
  5235. </td>
  5236. <td>
  5237. <em>(Optional)</em>
  5238. <p>Finds secrets based on the name.</p>
  5239. </td>
  5240. </tr>
  5241. <tr>
  5242. <td>
  5243. <code>tags</code></br>
  5244. <em>
  5245. map[string]string
  5246. </em>
  5247. </td>
  5248. <td>
  5249. <em>(Optional)</em>
  5250. <p>Find secrets based on tags.</p>
  5251. </td>
  5252. </tr>
  5253. <tr>
  5254. <td>
  5255. <code>conversionStrategy</code></br>
  5256. <em>
  5257. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5258. ExternalSecretConversionStrategy
  5259. </a>
  5260. </em>
  5261. </td>
  5262. <td>
  5263. <em>(Optional)</em>
  5264. <p>Used to define a conversion Strategy</p>
  5265. </td>
  5266. </tr>
  5267. <tr>
  5268. <td>
  5269. <code>decodingStrategy</code></br>
  5270. <em>
  5271. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5272. ExternalSecretDecodingStrategy
  5273. </a>
  5274. </em>
  5275. </td>
  5276. <td>
  5277. <em>(Optional)</em>
  5278. <p>Used to define a decoding Strategy</p>
  5279. </td>
  5280. </tr>
  5281. </tbody>
  5282. </table>
  5283. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  5284. </h3>
  5285. <p>
  5286. (<em>Appears on:</em>
  5287. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  5288. </p>
  5289. <p>
  5290. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  5291. </p>
  5292. <table>
  5293. <thead>
  5294. <tr>
  5295. <th>Field</th>
  5296. <th>Description</th>
  5297. </tr>
  5298. </thead>
  5299. <tbody>
  5300. <tr>
  5301. <td>
  5302. <code>annotations</code></br>
  5303. <em>
  5304. map[string]string
  5305. </em>
  5306. </td>
  5307. <td>
  5308. <em>(Optional)</em>
  5309. </td>
  5310. </tr>
  5311. <tr>
  5312. <td>
  5313. <code>labels</code></br>
  5314. <em>
  5315. map[string]string
  5316. </em>
  5317. </td>
  5318. <td>
  5319. <em>(Optional)</em>
  5320. </td>
  5321. </tr>
  5322. </tbody>
  5323. </table>
  5324. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  5325. (<code>string</code> alias)</p></h3>
  5326. <p>
  5327. (<em>Appears on:</em>
  5328. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  5329. </p>
  5330. <p>
  5331. <p>ExternalSecretMetadataPolicy defines policies for fetching metadata from provider secrets.</p>
  5332. </p>
  5333. <table>
  5334. <thead>
  5335. <tr>
  5336. <th>Value</th>
  5337. <th>Description</th>
  5338. </tr>
  5339. </thead>
  5340. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  5341. <td><p>ExternalSecretMetadataPolicyFetch specifies that metadata should be fetched from the provider.</p>
  5342. </td>
  5343. </tr><tr><td><p>&#34;None&#34;</p></td>
  5344. <td><p>ExternalSecretMetadataPolicyNone specifies that no metadata should be fetched from the provider.</p>
  5345. </td>
  5346. </tr></tbody>
  5347. </table>
  5348. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  5349. (<code>string</code> alias)</p></h3>
  5350. <p>
  5351. (<em>Appears on:</em>
  5352. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5353. </p>
  5354. <p>
  5355. <p>ExternalSecretRefreshPolicy defines how and when the ExternalSecret should be refreshed.</p>
  5356. </p>
  5357. <table>
  5358. <thead>
  5359. <tr>
  5360. <th>Value</th>
  5361. <th>Description</th>
  5362. </tr>
  5363. </thead>
  5364. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  5365. <td><p>RefreshPolicyCreatedOnce creates the Secret once and does not update it thereafter.</p>
  5366. </td>
  5367. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  5368. <td><p>RefreshPolicyOnChange only synchronizes when the ExternalSecret&rsquo;s metadata or spec changes.</p>
  5369. </td>
  5370. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  5371. <td><p>RefreshPolicyPeriodic synchronizes the Secret from the provider at regular intervals.</p>
  5372. </td>
  5373. </tr></tbody>
  5374. </table>
  5375. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  5376. </h3>
  5377. <p>
  5378. (<em>Appears on:</em>
  5379. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5380. </p>
  5381. <p>
  5382. <p>ExternalSecretRewrite defines how to rewrite secret data values before they are written to the Secret.</p>
  5383. </p>
  5384. <table>
  5385. <thead>
  5386. <tr>
  5387. <th>Field</th>
  5388. <th>Description</th>
  5389. </tr>
  5390. </thead>
  5391. <tbody>
  5392. <tr>
  5393. <td>
  5394. <code>merge</code></br>
  5395. <em>
  5396. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  5397. ExternalSecretRewriteMerge
  5398. </a>
  5399. </em>
  5400. </td>
  5401. <td>
  5402. <em>(Optional)</em>
  5403. <p>Used to merge key/values in one single Secret
  5404. The resulting key will contain all values from the specified secrets</p>
  5405. </td>
  5406. </tr>
  5407. <tr>
  5408. <td>
  5409. <code>regexp</code></br>
  5410. <em>
  5411. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5412. ExternalSecretRewriteRegexp
  5413. </a>
  5414. </em>
  5415. </td>
  5416. <td>
  5417. <em>(Optional)</em>
  5418. <p>Used to rewrite with regular expressions.
  5419. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5420. </td>
  5421. </tr>
  5422. <tr>
  5423. <td>
  5424. <code>transform</code></br>
  5425. <em>
  5426. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5427. ExternalSecretRewriteTransform
  5428. </a>
  5429. </em>
  5430. </td>
  5431. <td>
  5432. <em>(Optional)</em>
  5433. <p>Used to apply string transformation on the secrets.
  5434. The resulting key will be the output of the template applied by the operation.</p>
  5435. </td>
  5436. </tr>
  5437. </tbody>
  5438. </table>
  5439. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5440. </h3>
  5441. <p>
  5442. (<em>Appears on:</em>
  5443. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5444. </p>
  5445. <p>
  5446. <p>ExternalSecretRewriteMerge defines configuration for merging secret values.</p>
  5447. </p>
  5448. <table>
  5449. <thead>
  5450. <tr>
  5451. <th>Field</th>
  5452. <th>Description</th>
  5453. </tr>
  5454. </thead>
  5455. <tbody>
  5456. <tr>
  5457. <td>
  5458. <code>into</code></br>
  5459. <em>
  5460. string
  5461. </em>
  5462. </td>
  5463. <td>
  5464. <em>(Optional)</em>
  5465. <p>Used to define the target key of the merge operation.
  5466. Required if strategy is JSON. Ignored otherwise.</p>
  5467. </td>
  5468. </tr>
  5469. <tr>
  5470. <td>
  5471. <code>priority</code></br>
  5472. <em>
  5473. []string
  5474. </em>
  5475. </td>
  5476. <td>
  5477. <em>(Optional)</em>
  5478. <p>Used to define key priority in conflict resolution.</p>
  5479. </td>
  5480. </tr>
  5481. <tr>
  5482. <td>
  5483. <code>priorityPolicy</code></br>
  5484. <em>
  5485. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergePriorityPolicy">
  5486. ExternalSecretRewriteMergePriorityPolicy
  5487. </a>
  5488. </em>
  5489. </td>
  5490. <td>
  5491. <em>(Optional)</em>
  5492. <p>Used to define the policy when a key in the priority list does not exist in the input.</p>
  5493. </td>
  5494. </tr>
  5495. <tr>
  5496. <td>
  5497. <code>conflictPolicy</code></br>
  5498. <em>
  5499. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5500. ExternalSecretRewriteMergeConflictPolicy
  5501. </a>
  5502. </em>
  5503. </td>
  5504. <td>
  5505. <em>(Optional)</em>
  5506. <p>Used to define the policy to use in conflict resolution.</p>
  5507. </td>
  5508. </tr>
  5509. <tr>
  5510. <td>
  5511. <code>strategy</code></br>
  5512. <em>
  5513. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5514. ExternalSecretRewriteMergeStrategy
  5515. </a>
  5516. </em>
  5517. </td>
  5518. <td>
  5519. <em>(Optional)</em>
  5520. <p>Used to define the strategy to use in the merge operation.</p>
  5521. </td>
  5522. </tr>
  5523. </tbody>
  5524. </table>
  5525. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5526. (<code>string</code> alias)</p></h3>
  5527. <p>
  5528. (<em>Appears on:</em>
  5529. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5530. </p>
  5531. <p>
  5532. <p>ExternalSecretRewriteMergeConflictPolicy defines the policy for resolving conflicts when merging secrets.</p>
  5533. </p>
  5534. <table>
  5535. <thead>
  5536. <tr>
  5537. <th>Value</th>
  5538. <th>Description</th>
  5539. </tr>
  5540. </thead>
  5541. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5542. <td><p>ExternalSecretRewriteMergeConflictPolicyError returns an error when conflicts occur during merge.</p>
  5543. </td>
  5544. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5545. <td><p>ExternalSecretRewriteMergeConflictPolicyIgnore ignores conflicts when merging secret values.</p>
  5546. </td>
  5547. </tr></tbody>
  5548. </table>
  5549. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergePriorityPolicy">ExternalSecretRewriteMergePriorityPolicy
  5550. (<code>string</code> alias)</p></h3>
  5551. <p>
  5552. (<em>Appears on:</em>
  5553. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5554. </p>
  5555. <p>
  5556. <p>ExternalSecretRewriteMergePriorityPolicy defines the policy for handling missing keys in the priority
  5557. list during merge operations.</p>
  5558. </p>
  5559. <table>
  5560. <thead>
  5561. <tr>
  5562. <th>Value</th>
  5563. <th>Description</th>
  5564. </tr>
  5565. </thead>
  5566. <tbody><tr><td><p>&#34;IgnoreNotFound&#34;</p></td>
  5567. <td></td>
  5568. </tr><tr><td><p>&#34;Strict&#34;</p></td>
  5569. <td></td>
  5570. </tr></tbody>
  5571. </table>
  5572. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5573. (<code>string</code> alias)</p></h3>
  5574. <p>
  5575. (<em>Appears on:</em>
  5576. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5577. </p>
  5578. <p>
  5579. <p>ExternalSecretRewriteMergeStrategy defines the strategy for merging secrets.</p>
  5580. </p>
  5581. <table>
  5582. <thead>
  5583. <tr>
  5584. <th>Value</th>
  5585. <th>Description</th>
  5586. </tr>
  5587. </thead>
  5588. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5589. <td><p>ExternalSecretRewriteMergeStrategyExtract merges secrets by extracting values.</p>
  5590. </td>
  5591. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5592. <td><p>ExternalSecretRewriteMergeStrategyJSON merges secrets using JSON merge strategy.</p>
  5593. </td>
  5594. </tr></tbody>
  5595. </table>
  5596. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5597. </h3>
  5598. <p>
  5599. (<em>Appears on:</em>
  5600. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5601. </p>
  5602. <p>
  5603. <p>ExternalSecretRewriteRegexp defines configuration for rewriting secrets using regular expressions.</p>
  5604. </p>
  5605. <table>
  5606. <thead>
  5607. <tr>
  5608. <th>Field</th>
  5609. <th>Description</th>
  5610. </tr>
  5611. </thead>
  5612. <tbody>
  5613. <tr>
  5614. <td>
  5615. <code>source</code></br>
  5616. <em>
  5617. string
  5618. </em>
  5619. </td>
  5620. <td>
  5621. <p>Used to define the regular expression of a re.Compiler.</p>
  5622. </td>
  5623. </tr>
  5624. <tr>
  5625. <td>
  5626. <code>target</code></br>
  5627. <em>
  5628. string
  5629. </em>
  5630. </td>
  5631. <td>
  5632. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5633. </td>
  5634. </tr>
  5635. </tbody>
  5636. </table>
  5637. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5638. </h3>
  5639. <p>
  5640. (<em>Appears on:</em>
  5641. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5642. </p>
  5643. <p>
  5644. <p>ExternalSecretRewriteTransform defines configuration for transforming secrets using templates.</p>
  5645. </p>
  5646. <table>
  5647. <thead>
  5648. <tr>
  5649. <th>Field</th>
  5650. <th>Description</th>
  5651. </tr>
  5652. </thead>
  5653. <tbody>
  5654. <tr>
  5655. <td>
  5656. <code>template</code></br>
  5657. <em>
  5658. string
  5659. </em>
  5660. </td>
  5661. <td>
  5662. <p>Used to define the template to apply on the secret name.
  5663. <code>.value</code> will specify the secret name in the template.</p>
  5664. </td>
  5665. </tr>
  5666. </tbody>
  5667. </table>
  5668. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5669. </h3>
  5670. <p>
  5671. (<em>Appears on:</em>
  5672. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5673. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5674. </p>
  5675. <p>
  5676. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5677. </p>
  5678. <table>
  5679. <thead>
  5680. <tr>
  5681. <th>Field</th>
  5682. <th>Description</th>
  5683. </tr>
  5684. </thead>
  5685. <tbody>
  5686. <tr>
  5687. <td>
  5688. <code>secretStoreRef</code></br>
  5689. <em>
  5690. <a href="#external-secrets.io/v1.SecretStoreRef">
  5691. SecretStoreRef
  5692. </a>
  5693. </em>
  5694. </td>
  5695. <td>
  5696. <em>(Optional)</em>
  5697. </td>
  5698. </tr>
  5699. <tr>
  5700. <td>
  5701. <code>target</code></br>
  5702. <em>
  5703. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5704. ExternalSecretTarget
  5705. </a>
  5706. </em>
  5707. </td>
  5708. <td>
  5709. <em>(Optional)</em>
  5710. </td>
  5711. </tr>
  5712. <tr>
  5713. <td>
  5714. <code>refreshPolicy</code></br>
  5715. <em>
  5716. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5717. ExternalSecretRefreshPolicy
  5718. </a>
  5719. </em>
  5720. </td>
  5721. <td>
  5722. <em>(Optional)</em>
  5723. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5724. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5725. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5726. No periodic updates occur if refreshInterval is 0.
  5727. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5728. </td>
  5729. </tr>
  5730. <tr>
  5731. <td>
  5732. <code>refreshInterval</code></br>
  5733. <em>
  5734. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5735. Kubernetes meta/v1.Duration
  5736. </a>
  5737. </em>
  5738. </td>
  5739. <td>
  5740. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5741. specified as Golang Duration strings.
  5742. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5743. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5744. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5745. </td>
  5746. </tr>
  5747. <tr>
  5748. <td>
  5749. <code>data</code></br>
  5750. <em>
  5751. <a href="#external-secrets.io/v1.ExternalSecretData">
  5752. []ExternalSecretData
  5753. </a>
  5754. </em>
  5755. </td>
  5756. <td>
  5757. <em>(Optional)</em>
  5758. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5759. </td>
  5760. </tr>
  5761. <tr>
  5762. <td>
  5763. <code>dataFrom</code></br>
  5764. <em>
  5765. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5766. []ExternalSecretDataFromRemoteRef
  5767. </a>
  5768. </em>
  5769. </td>
  5770. <td>
  5771. <em>(Optional)</em>
  5772. <p>DataFrom is used to fetch all properties from a specific Provider data
  5773. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5774. </td>
  5775. </tr>
  5776. </tbody>
  5777. </table>
  5778. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5779. </h3>
  5780. <p>
  5781. (<em>Appears on:</em>
  5782. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5783. </p>
  5784. <p>
  5785. <p>ExternalSecretStatus defines the observed state of ExternalSecret.</p>
  5786. </p>
  5787. <table>
  5788. <thead>
  5789. <tr>
  5790. <th>Field</th>
  5791. <th>Description</th>
  5792. </tr>
  5793. </thead>
  5794. <tbody>
  5795. <tr>
  5796. <td>
  5797. <code>refreshTime</code></br>
  5798. <em>
  5799. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5800. Kubernetes meta/v1.Time
  5801. </a>
  5802. </em>
  5803. </td>
  5804. <td>
  5805. <p>refreshTime is the time and date the external secret was fetched and
  5806. the target secret updated</p>
  5807. </td>
  5808. </tr>
  5809. <tr>
  5810. <td>
  5811. <code>syncedResourceVersion</code></br>
  5812. <em>
  5813. string
  5814. </em>
  5815. </td>
  5816. <td>
  5817. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5818. </td>
  5819. </tr>
  5820. <tr>
  5821. <td>
  5822. <code>conditions</code></br>
  5823. <em>
  5824. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5825. []ExternalSecretStatusCondition
  5826. </a>
  5827. </em>
  5828. </td>
  5829. <td>
  5830. <em>(Optional)</em>
  5831. </td>
  5832. </tr>
  5833. <tr>
  5834. <td>
  5835. <code>binding</code></br>
  5836. <em>
  5837. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5838. Kubernetes core/v1.LocalObjectReference
  5839. </a>
  5840. </em>
  5841. </td>
  5842. <td>
  5843. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5844. </td>
  5845. </tr>
  5846. </tbody>
  5847. </table>
  5848. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5849. </h3>
  5850. <p>
  5851. (<em>Appears on:</em>
  5852. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5853. </p>
  5854. <p>
  5855. <p>ExternalSecretStatusCondition defines a status condition of an ExternalSecret resource.</p>
  5856. </p>
  5857. <table>
  5858. <thead>
  5859. <tr>
  5860. <th>Field</th>
  5861. <th>Description</th>
  5862. </tr>
  5863. </thead>
  5864. <tbody>
  5865. <tr>
  5866. <td>
  5867. <code>type</code></br>
  5868. <em>
  5869. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5870. ExternalSecretConditionType
  5871. </a>
  5872. </em>
  5873. </td>
  5874. <td>
  5875. </td>
  5876. </tr>
  5877. <tr>
  5878. <td>
  5879. <code>status</code></br>
  5880. <em>
  5881. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5882. Kubernetes core/v1.ConditionStatus
  5883. </a>
  5884. </em>
  5885. </td>
  5886. <td>
  5887. </td>
  5888. </tr>
  5889. <tr>
  5890. <td>
  5891. <code>reason</code></br>
  5892. <em>
  5893. string
  5894. </em>
  5895. </td>
  5896. <td>
  5897. <em>(Optional)</em>
  5898. </td>
  5899. </tr>
  5900. <tr>
  5901. <td>
  5902. <code>message</code></br>
  5903. <em>
  5904. string
  5905. </em>
  5906. </td>
  5907. <td>
  5908. <em>(Optional)</em>
  5909. </td>
  5910. </tr>
  5911. <tr>
  5912. <td>
  5913. <code>lastTransitionTime</code></br>
  5914. <em>
  5915. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5916. Kubernetes meta/v1.Time
  5917. </a>
  5918. </em>
  5919. </td>
  5920. <td>
  5921. <em>(Optional)</em>
  5922. </td>
  5923. </tr>
  5924. </tbody>
  5925. </table>
  5926. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5927. </h3>
  5928. <p>
  5929. (<em>Appears on:</em>
  5930. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5931. </p>
  5932. <p>
  5933. <p>ExternalSecretTarget defines the Kubernetes Secret to be created,
  5934. there can be only one target per ExternalSecret.</p>
  5935. </p>
  5936. <table>
  5937. <thead>
  5938. <tr>
  5939. <th>Field</th>
  5940. <th>Description</th>
  5941. </tr>
  5942. </thead>
  5943. <tbody>
  5944. <tr>
  5945. <td>
  5946. <code>name</code></br>
  5947. <em>
  5948. string
  5949. </em>
  5950. </td>
  5951. <td>
  5952. <em>(Optional)</em>
  5953. <p>The name of the Secret resource to be managed.
  5954. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5955. </td>
  5956. </tr>
  5957. <tr>
  5958. <td>
  5959. <code>creationPolicy</code></br>
  5960. <em>
  5961. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5962. ExternalSecretCreationPolicy
  5963. </a>
  5964. </em>
  5965. </td>
  5966. <td>
  5967. <em>(Optional)</em>
  5968. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5969. Defaults to &ldquo;Owner&rdquo;</p>
  5970. </td>
  5971. </tr>
  5972. <tr>
  5973. <td>
  5974. <code>deletionPolicy</code></br>
  5975. <em>
  5976. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5977. ExternalSecretDeletionPolicy
  5978. </a>
  5979. </em>
  5980. </td>
  5981. <td>
  5982. <em>(Optional)</em>
  5983. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5984. Defaults to &ldquo;Retain&rdquo;</p>
  5985. </td>
  5986. </tr>
  5987. <tr>
  5988. <td>
  5989. <code>template</code></br>
  5990. <em>
  5991. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5992. ExternalSecretTemplate
  5993. </a>
  5994. </em>
  5995. </td>
  5996. <td>
  5997. <em>(Optional)</em>
  5998. <p>Template defines a blueprint for the created Secret resource.</p>
  5999. </td>
  6000. </tr>
  6001. <tr>
  6002. <td>
  6003. <code>manifest</code></br>
  6004. <em>
  6005. <a href="#external-secrets.io/v1.ManifestReference">
  6006. ManifestReference
  6007. </a>
  6008. </em>
  6009. </td>
  6010. <td>
  6011. <em>(Optional)</em>
  6012. <p>Manifest defines a custom Kubernetes resource to create instead of a Secret.
  6013. When specified, ExternalSecret will create the resource type defined here
  6014. (e.g., ConfigMap, Custom Resource) instead of a Secret.
  6015. Warning: Using Generic target. Make sure access policies and encryption are properly configured.</p>
  6016. </td>
  6017. </tr>
  6018. <tr>
  6019. <td>
  6020. <code>immutable</code></br>
  6021. <em>
  6022. bool
  6023. </em>
  6024. </td>
  6025. <td>
  6026. <em>(Optional)</em>
  6027. <p>Immutable defines if the final secret will be immutable</p>
  6028. </td>
  6029. </tr>
  6030. </tbody>
  6031. </table>
  6032. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  6033. </h3>
  6034. <p>
  6035. (<em>Appears on:</em>
  6036. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  6037. </p>
  6038. <p>
  6039. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  6040. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  6041. </p>
  6042. <table>
  6043. <thead>
  6044. <tr>
  6045. <th>Field</th>
  6046. <th>Description</th>
  6047. </tr>
  6048. </thead>
  6049. <tbody>
  6050. <tr>
  6051. <td>
  6052. <code>type</code></br>
  6053. <em>
  6054. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  6055. Kubernetes core/v1.SecretType
  6056. </a>
  6057. </em>
  6058. </td>
  6059. <td>
  6060. <em>(Optional)</em>
  6061. </td>
  6062. </tr>
  6063. <tr>
  6064. <td>
  6065. <code>engineVersion</code></br>
  6066. <em>
  6067. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  6068. TemplateEngineVersion
  6069. </a>
  6070. </em>
  6071. </td>
  6072. <td>
  6073. <p>EngineVersion specifies the template engine version
  6074. that should be used to compile/execute the
  6075. template specified in .data and .templateFrom[].</p>
  6076. </td>
  6077. </tr>
  6078. <tr>
  6079. <td>
  6080. <code>metadata</code></br>
  6081. <em>
  6082. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  6083. ExternalSecretTemplateMetadata
  6084. </a>
  6085. </em>
  6086. </td>
  6087. <td>
  6088. <em>(Optional)</em>
  6089. </td>
  6090. </tr>
  6091. <tr>
  6092. <td>
  6093. <code>mergePolicy</code></br>
  6094. <em>
  6095. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  6096. TemplateMergePolicy
  6097. </a>
  6098. </em>
  6099. </td>
  6100. <td>
  6101. </td>
  6102. </tr>
  6103. <tr>
  6104. <td>
  6105. <code>data</code></br>
  6106. <em>
  6107. map[string]string
  6108. </em>
  6109. </td>
  6110. <td>
  6111. <em>(Optional)</em>
  6112. </td>
  6113. </tr>
  6114. <tr>
  6115. <td>
  6116. <code>templateFrom</code></br>
  6117. <em>
  6118. <a href="#external-secrets.io/v1.TemplateFrom">
  6119. []TemplateFrom
  6120. </a>
  6121. </em>
  6122. </td>
  6123. <td>
  6124. <em>(Optional)</em>
  6125. </td>
  6126. </tr>
  6127. </tbody>
  6128. </table>
  6129. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  6130. </h3>
  6131. <p>
  6132. (<em>Appears on:</em>
  6133. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  6134. </p>
  6135. <p>
  6136. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  6137. </p>
  6138. <table>
  6139. <thead>
  6140. <tr>
  6141. <th>Field</th>
  6142. <th>Description</th>
  6143. </tr>
  6144. </thead>
  6145. <tbody>
  6146. <tr>
  6147. <td>
  6148. <code>annotations</code></br>
  6149. <em>
  6150. map[string]string
  6151. </em>
  6152. </td>
  6153. <td>
  6154. <em>(Optional)</em>
  6155. </td>
  6156. </tr>
  6157. <tr>
  6158. <td>
  6159. <code>labels</code></br>
  6160. <em>
  6161. map[string]string
  6162. </em>
  6163. </td>
  6164. <td>
  6165. <em>(Optional)</em>
  6166. </td>
  6167. </tr>
  6168. <tr>
  6169. <td>
  6170. <code>finalizers</code></br>
  6171. <em>
  6172. []string
  6173. </em>
  6174. </td>
  6175. <td>
  6176. <em>(Optional)</em>
  6177. </td>
  6178. </tr>
  6179. </tbody>
  6180. </table>
  6181. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  6182. </h3>
  6183. <p>
  6184. <p>ExternalSecretValidator implements a validating webhook for ExternalSecrets.</p>
  6185. </p>
  6186. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  6187. </h3>
  6188. <p>
  6189. (<em>Appears on:</em>
  6190. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6191. </p>
  6192. <p>
  6193. <p>FakeProvider configures a fake provider that returns static values.</p>
  6194. </p>
  6195. <table>
  6196. <thead>
  6197. <tr>
  6198. <th>Field</th>
  6199. <th>Description</th>
  6200. </tr>
  6201. </thead>
  6202. <tbody>
  6203. <tr>
  6204. <td>
  6205. <code>data</code></br>
  6206. <em>
  6207. <a href="#external-secrets.io/v1.FakeProviderData">
  6208. []FakeProviderData
  6209. </a>
  6210. </em>
  6211. </td>
  6212. <td>
  6213. </td>
  6214. </tr>
  6215. <tr>
  6216. <td>
  6217. <code>validationResult</code></br>
  6218. <em>
  6219. <a href="#external-secrets.io/v1.ValidationResult">
  6220. ValidationResult
  6221. </a>
  6222. </em>
  6223. </td>
  6224. <td>
  6225. </td>
  6226. </tr>
  6227. </tbody>
  6228. </table>
  6229. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  6230. </h3>
  6231. <p>
  6232. (<em>Appears on:</em>
  6233. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  6234. </p>
  6235. <p>
  6236. <p>FakeProviderData defines a key-value pair with optional version for the fake provider.</p>
  6237. </p>
  6238. <table>
  6239. <thead>
  6240. <tr>
  6241. <th>Field</th>
  6242. <th>Description</th>
  6243. </tr>
  6244. </thead>
  6245. <tbody>
  6246. <tr>
  6247. <td>
  6248. <code>key</code></br>
  6249. <em>
  6250. string
  6251. </em>
  6252. </td>
  6253. <td>
  6254. </td>
  6255. </tr>
  6256. <tr>
  6257. <td>
  6258. <code>value</code></br>
  6259. <em>
  6260. string
  6261. </em>
  6262. </td>
  6263. <td>
  6264. </td>
  6265. </tr>
  6266. <tr>
  6267. <td>
  6268. <code>version</code></br>
  6269. <em>
  6270. string
  6271. </em>
  6272. </td>
  6273. <td>
  6274. </td>
  6275. </tr>
  6276. </tbody>
  6277. </table>
  6278. <h3 id="external-secrets.io/v1.FetchingPolicy">FetchingPolicy
  6279. </h3>
  6280. <p>
  6281. (<em>Appears on:</em>
  6282. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  6283. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6284. </p>
  6285. <p>
  6286. <p>FetchingPolicy configures how the provider interprets the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret.</p>
  6287. </p>
  6288. <table>
  6289. <thead>
  6290. <tr>
  6291. <th>Field</th>
  6292. <th>Description</th>
  6293. </tr>
  6294. </thead>
  6295. <tbody>
  6296. <tr>
  6297. <td>
  6298. <code>byID</code></br>
  6299. <em>
  6300. <a href="#external-secrets.io/v1.ByID">
  6301. ByID
  6302. </a>
  6303. </em>
  6304. </td>
  6305. <td>
  6306. </td>
  6307. </tr>
  6308. <tr>
  6309. <td>
  6310. <code>byName</code></br>
  6311. <em>
  6312. <a href="#external-secrets.io/v1.ByName">
  6313. ByName
  6314. </a>
  6315. </em>
  6316. </td>
  6317. <td>
  6318. </td>
  6319. </tr>
  6320. </tbody>
  6321. </table>
  6322. <h3 id="external-secrets.io/v1.FindName">FindName
  6323. </h3>
  6324. <p>
  6325. (<em>Appears on:</em>
  6326. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  6327. </p>
  6328. <p>
  6329. <p>FindName defines criteria for finding secrets by name patterns.</p>
  6330. </p>
  6331. <table>
  6332. <thead>
  6333. <tr>
  6334. <th>Field</th>
  6335. <th>Description</th>
  6336. </tr>
  6337. </thead>
  6338. <tbody>
  6339. <tr>
  6340. <td>
  6341. <code>regexp</code></br>
  6342. <em>
  6343. string
  6344. </em>
  6345. </td>
  6346. <td>
  6347. <em>(Optional)</em>
  6348. <p>Finds secrets base</p>
  6349. </td>
  6350. </tr>
  6351. </tbody>
  6352. </table>
  6353. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  6354. </h3>
  6355. <p>
  6356. (<em>Appears on:</em>
  6357. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6358. </p>
  6359. <p>
  6360. <p>FortanixProvider provides access to Fortanix SDKMS API using the provided credentials.</p>
  6361. </p>
  6362. <table>
  6363. <thead>
  6364. <tr>
  6365. <th>Field</th>
  6366. <th>Description</th>
  6367. </tr>
  6368. </thead>
  6369. <tbody>
  6370. <tr>
  6371. <td>
  6372. <code>apiUrl</code></br>
  6373. <em>
  6374. string
  6375. </em>
  6376. </td>
  6377. <td>
  6378. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  6379. </td>
  6380. </tr>
  6381. <tr>
  6382. <td>
  6383. <code>apiKey</code></br>
  6384. <em>
  6385. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  6386. FortanixProviderSecretRef
  6387. </a>
  6388. </em>
  6389. </td>
  6390. <td>
  6391. <p>APIKey is the API token to access SDKMS Applications.</p>
  6392. </td>
  6393. </tr>
  6394. </tbody>
  6395. </table>
  6396. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  6397. </h3>
  6398. <p>
  6399. (<em>Appears on:</em>
  6400. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  6401. </p>
  6402. <p>
  6403. <p>FortanixProviderSecretRef is a secret reference containing the SDKMS API Key.</p>
  6404. </p>
  6405. <table>
  6406. <thead>
  6407. <tr>
  6408. <th>Field</th>
  6409. <th>Description</th>
  6410. </tr>
  6411. </thead>
  6412. <tbody>
  6413. <tr>
  6414. <td>
  6415. <code>secretRef</code></br>
  6416. <em>
  6417. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6418. External Secrets meta/v1.SecretKeySelector
  6419. </a>
  6420. </em>
  6421. </td>
  6422. <td>
  6423. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  6424. </td>
  6425. </tr>
  6426. </tbody>
  6427. </table>
  6428. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  6429. </h3>
  6430. <p>
  6431. (<em>Appears on:</em>
  6432. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  6433. </p>
  6434. <p>
  6435. <p>GCPSMAuth defines the authentication methods for Google Cloud Platform Secret Manager.</p>
  6436. </p>
  6437. <table>
  6438. <thead>
  6439. <tr>
  6440. <th>Field</th>
  6441. <th>Description</th>
  6442. </tr>
  6443. </thead>
  6444. <tbody>
  6445. <tr>
  6446. <td>
  6447. <code>secretRef</code></br>
  6448. <em>
  6449. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  6450. GCPSMAuthSecretRef
  6451. </a>
  6452. </em>
  6453. </td>
  6454. <td>
  6455. <em>(Optional)</em>
  6456. </td>
  6457. </tr>
  6458. <tr>
  6459. <td>
  6460. <code>workloadIdentity</code></br>
  6461. <em>
  6462. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  6463. GCPWorkloadIdentity
  6464. </a>
  6465. </em>
  6466. </td>
  6467. <td>
  6468. <em>(Optional)</em>
  6469. </td>
  6470. </tr>
  6471. <tr>
  6472. <td>
  6473. <code>workloadIdentityFederation</code></br>
  6474. <em>
  6475. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">
  6476. GCPWorkloadIdentityFederation
  6477. </a>
  6478. </em>
  6479. </td>
  6480. <td>
  6481. <em>(Optional)</em>
  6482. </td>
  6483. </tr>
  6484. </tbody>
  6485. </table>
  6486. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  6487. </h3>
  6488. <p>
  6489. (<em>Appears on:</em>
  6490. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6491. </p>
  6492. <p>
  6493. <p>GCPSMAuthSecretRef contains the secret references for GCP Secret Manager authentication.</p>
  6494. </p>
  6495. <table>
  6496. <thead>
  6497. <tr>
  6498. <th>Field</th>
  6499. <th>Description</th>
  6500. </tr>
  6501. </thead>
  6502. <tbody>
  6503. <tr>
  6504. <td>
  6505. <code>secretAccessKeySecretRef</code></br>
  6506. <em>
  6507. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6508. External Secrets meta/v1.SecretKeySelector
  6509. </a>
  6510. </em>
  6511. </td>
  6512. <td>
  6513. <em>(Optional)</em>
  6514. <p>The SecretAccessKey is used for authentication</p>
  6515. </td>
  6516. </tr>
  6517. </tbody>
  6518. </table>
  6519. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  6520. </h3>
  6521. <p>
  6522. (<em>Appears on:</em>
  6523. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6524. </p>
  6525. <p>
  6526. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  6527. </p>
  6528. <table>
  6529. <thead>
  6530. <tr>
  6531. <th>Field</th>
  6532. <th>Description</th>
  6533. </tr>
  6534. </thead>
  6535. <tbody>
  6536. <tr>
  6537. <td>
  6538. <code>auth</code></br>
  6539. <em>
  6540. <a href="#external-secrets.io/v1.GCPSMAuth">
  6541. GCPSMAuth
  6542. </a>
  6543. </em>
  6544. </td>
  6545. <td>
  6546. <em>(Optional)</em>
  6547. <p>Auth defines the information necessary to authenticate against GCP</p>
  6548. </td>
  6549. </tr>
  6550. <tr>
  6551. <td>
  6552. <code>projectID</code></br>
  6553. <em>
  6554. string
  6555. </em>
  6556. </td>
  6557. <td>
  6558. <p>ProjectID project where secret is located</p>
  6559. </td>
  6560. </tr>
  6561. <tr>
  6562. <td>
  6563. <code>location</code></br>
  6564. <em>
  6565. string
  6566. </em>
  6567. </td>
  6568. <td>
  6569. <p>Location optionally defines a location for a secret</p>
  6570. </td>
  6571. </tr>
  6572. <tr>
  6573. <td>
  6574. <code>secretVersionSelectionPolicy</code></br>
  6575. <em>
  6576. <a href="#external-secrets.io/v1.SecretVersionSelectionPolicy">
  6577. SecretVersionSelectionPolicy
  6578. </a>
  6579. </em>
  6580. </td>
  6581. <td>
  6582. <em>(Optional)</em>
  6583. <p>SecretVersionSelectionPolicy specifies how the provider selects a secret version
  6584. when &ldquo;latest&rdquo; is disabled or destroyed.
  6585. Possible values are:
  6586. - LatestOrFail: the provider always uses &ldquo;latest&rdquo;, or fails if that version is disabled/destroyed.
  6587. - LatestOrFetch: the provider falls back to fetching the latest version if the version is DESTROYED or DISABLED</p>
  6588. </td>
  6589. </tr>
  6590. </tbody>
  6591. </table>
  6592. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6593. </h3>
  6594. <p>
  6595. (<em>Appears on:</em>
  6596. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6597. </p>
  6598. <p>
  6599. <p>GCPWorkloadIdentity defines configuration for workload identity authentication to GCP.</p>
  6600. </p>
  6601. <table>
  6602. <thead>
  6603. <tr>
  6604. <th>Field</th>
  6605. <th>Description</th>
  6606. </tr>
  6607. </thead>
  6608. <tbody>
  6609. <tr>
  6610. <td>
  6611. <code>serviceAccountRef</code></br>
  6612. <em>
  6613. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6614. External Secrets meta/v1.ServiceAccountSelector
  6615. </a>
  6616. </em>
  6617. </td>
  6618. <td>
  6619. </td>
  6620. </tr>
  6621. <tr>
  6622. <td>
  6623. <code>clusterLocation</code></br>
  6624. <em>
  6625. string
  6626. </em>
  6627. </td>
  6628. <td>
  6629. <em>(Optional)</em>
  6630. <p>ClusterLocation is the location of the cluster
  6631. If not specified, it fetches information from the metadata server</p>
  6632. </td>
  6633. </tr>
  6634. <tr>
  6635. <td>
  6636. <code>clusterName</code></br>
  6637. <em>
  6638. string
  6639. </em>
  6640. </td>
  6641. <td>
  6642. <em>(Optional)</em>
  6643. <p>ClusterName is the name of the cluster
  6644. If not specified, it fetches information from the metadata server</p>
  6645. </td>
  6646. </tr>
  6647. <tr>
  6648. <td>
  6649. <code>clusterProjectID</code></br>
  6650. <em>
  6651. string
  6652. </em>
  6653. </td>
  6654. <td>
  6655. <em>(Optional)</em>
  6656. <p>ClusterProjectID is the project ID of the cluster
  6657. If not specified, it fetches information from the metadata server</p>
  6658. </td>
  6659. </tr>
  6660. </tbody>
  6661. </table>
  6662. <h3 id="external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation
  6663. </h3>
  6664. <p>
  6665. (<em>Appears on:</em>
  6666. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6667. </p>
  6668. <p>
  6669. <p>GCPWorkloadIdentityFederation holds the configurations required for generating federated access tokens.</p>
  6670. </p>
  6671. <table>
  6672. <thead>
  6673. <tr>
  6674. <th>Field</th>
  6675. <th>Description</th>
  6676. </tr>
  6677. </thead>
  6678. <tbody>
  6679. <tr>
  6680. <td>
  6681. <code>credConfig</code></br>
  6682. <em>
  6683. <a href="#external-secrets.io/v1.ConfigMapReference">
  6684. ConfigMapReference
  6685. </a>
  6686. </em>
  6687. </td>
  6688. <td>
  6689. <p>credConfig holds the configmap reference containing the GCP external account credential configuration in JSON format and the key name containing the json data.
  6690. For using Kubernetes cluster as the identity provider, use serviceAccountRef instead. Operators mounted serviceaccount token cannot be used as the token source, instead
  6691. serviceAccountRef must be used by providing operators service account details.</p>
  6692. </td>
  6693. </tr>
  6694. <tr>
  6695. <td>
  6696. <code>serviceAccountRef</code></br>
  6697. <em>
  6698. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6699. External Secrets meta/v1.ServiceAccountSelector
  6700. </a>
  6701. </em>
  6702. </td>
  6703. <td>
  6704. <p>serviceAccountRef is the reference to the kubernetes ServiceAccount to be used for obtaining the tokens,
  6705. when Kubernetes is configured as provider in workload identity pool.</p>
  6706. </td>
  6707. </tr>
  6708. <tr>
  6709. <td>
  6710. <code>awsSecurityCredentials</code></br>
  6711. <em>
  6712. <a href="#external-secrets.io/v1.AwsCredentialsConfig">
  6713. AwsCredentialsConfig
  6714. </a>
  6715. </em>
  6716. </td>
  6717. <td>
  6718. <p>awsSecurityCredentials is for configuring AWS region and credentials to use for obtaining the access token,
  6719. when using the AWS metadata server is not an option.</p>
  6720. </td>
  6721. </tr>
  6722. <tr>
  6723. <td>
  6724. <code>audience</code></br>
  6725. <em>
  6726. string
  6727. </em>
  6728. </td>
  6729. <td>
  6730. <p>audience is the Secure Token Service (STS) audience which contains the resource name for the workload identity pool and the provider identifier in that pool.
  6731. If specified, Audience found in the external account credential config will be overridden with the configured value.
  6732. audience must be provided when serviceAccountRef or awsSecurityCredentials is configured.</p>
  6733. </td>
  6734. </tr>
  6735. <tr>
  6736. <td>
  6737. <code>externalTokenEndpoint</code></br>
  6738. <em>
  6739. string
  6740. </em>
  6741. </td>
  6742. <td>
  6743. <p>externalTokenEndpoint is the endpoint explicitly set up to provide tokens, which will be matched against the
  6744. credential_source.url in the provided credConfig. This field is merely to double-check the external token source
  6745. URL is having the expected value.</p>
  6746. </td>
  6747. </tr>
  6748. </tbody>
  6749. </table>
  6750. <h3 id="external-secrets.io/v1.GcpIDTokenAuthCredentials">GcpIDTokenAuthCredentials
  6751. </h3>
  6752. <p>
  6753. (<em>Appears on:</em>
  6754. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6755. </p>
  6756. <p>
  6757. <p>GcpIDTokenAuthCredentials represents the credentials for GCP ID token authentication.</p>
  6758. </p>
  6759. <table>
  6760. <thead>
  6761. <tr>
  6762. <th>Field</th>
  6763. <th>Description</th>
  6764. </tr>
  6765. </thead>
  6766. <tbody>
  6767. <tr>
  6768. <td>
  6769. <code>identityId</code></br>
  6770. <em>
  6771. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6772. External Secrets meta/v1.SecretKeySelector
  6773. </a>
  6774. </em>
  6775. </td>
  6776. <td>
  6777. </td>
  6778. </tr>
  6779. </tbody>
  6780. </table>
  6781. <h3 id="external-secrets.io/v1.GcpIamAuthCredentials">GcpIamAuthCredentials
  6782. </h3>
  6783. <p>
  6784. (<em>Appears on:</em>
  6785. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6786. </p>
  6787. <p>
  6788. <p>GcpIamAuthCredentials represents the credentials for GCP IAM authentication.</p>
  6789. </p>
  6790. <table>
  6791. <thead>
  6792. <tr>
  6793. <th>Field</th>
  6794. <th>Description</th>
  6795. </tr>
  6796. </thead>
  6797. <tbody>
  6798. <tr>
  6799. <td>
  6800. <code>identityId</code></br>
  6801. <em>
  6802. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6803. External Secrets meta/v1.SecretKeySelector
  6804. </a>
  6805. </em>
  6806. </td>
  6807. <td>
  6808. </td>
  6809. </tr>
  6810. <tr>
  6811. <td>
  6812. <code>serviceAccountKeyFilePath</code></br>
  6813. <em>
  6814. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6815. External Secrets meta/v1.SecretKeySelector
  6816. </a>
  6817. </em>
  6818. </td>
  6819. <td>
  6820. </td>
  6821. </tr>
  6822. </tbody>
  6823. </table>
  6824. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6825. </h3>
  6826. <p>
  6827. (<em>Appears on:</em>
  6828. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6829. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6830. </p>
  6831. <p>
  6832. <p>GeneratorRef points to a generator custom resource.</p>
  6833. </p>
  6834. <table>
  6835. <thead>
  6836. <tr>
  6837. <th>Field</th>
  6838. <th>Description</th>
  6839. </tr>
  6840. </thead>
  6841. <tbody>
  6842. <tr>
  6843. <td>
  6844. <code>apiVersion</code></br>
  6845. <em>
  6846. string
  6847. </em>
  6848. </td>
  6849. <td>
  6850. <p>Specify the apiVersion of the generator resource</p>
  6851. </td>
  6852. </tr>
  6853. <tr>
  6854. <td>
  6855. <code>kind</code></br>
  6856. <em>
  6857. string
  6858. </em>
  6859. </td>
  6860. <td>
  6861. <p>Specify the Kind of the generator resource</p>
  6862. </td>
  6863. </tr>
  6864. <tr>
  6865. <td>
  6866. <code>name</code></br>
  6867. <em>
  6868. string
  6869. </em>
  6870. </td>
  6871. <td>
  6872. <p>Specify the name of the generator resource</p>
  6873. </td>
  6874. </tr>
  6875. </tbody>
  6876. </table>
  6877. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6878. </h3>
  6879. <p>
  6880. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6881. or a namespaced SecretStore.</p>
  6882. </p>
  6883. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6884. </h3>
  6885. <p>
  6886. <p>GenericStoreValidator implements webhook validation for SecretStore and ClusterSecretStore resources.</p>
  6887. </p>
  6888. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6889. </h3>
  6890. <p>
  6891. (<em>Appears on:</em>
  6892. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6893. </p>
  6894. <p>
  6895. <p>GithubAppAuth defines authentication configuration using a GitHub App for accessing GitHub API.</p>
  6896. </p>
  6897. <table>
  6898. <thead>
  6899. <tr>
  6900. <th>Field</th>
  6901. <th>Description</th>
  6902. </tr>
  6903. </thead>
  6904. <tbody>
  6905. <tr>
  6906. <td>
  6907. <code>privateKey</code></br>
  6908. <em>
  6909. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6910. External Secrets meta/v1.SecretKeySelector
  6911. </a>
  6912. </em>
  6913. </td>
  6914. <td>
  6915. </td>
  6916. </tr>
  6917. </tbody>
  6918. </table>
  6919. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6920. </h3>
  6921. <p>
  6922. (<em>Appears on:</em>
  6923. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6924. </p>
  6925. <p>
  6926. <p>GithubProvider provides access and authentication to a GitHub instance .</p>
  6927. </p>
  6928. <table>
  6929. <thead>
  6930. <tr>
  6931. <th>Field</th>
  6932. <th>Description</th>
  6933. </tr>
  6934. </thead>
  6935. <tbody>
  6936. <tr>
  6937. <td>
  6938. <code>url</code></br>
  6939. <em>
  6940. string
  6941. </em>
  6942. </td>
  6943. <td>
  6944. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6945. </td>
  6946. </tr>
  6947. <tr>
  6948. <td>
  6949. <code>uploadURL</code></br>
  6950. <em>
  6951. string
  6952. </em>
  6953. </td>
  6954. <td>
  6955. <em>(Optional)</em>
  6956. <p>Upload URL for enterprise instances. Default to URL.</p>
  6957. </td>
  6958. </tr>
  6959. <tr>
  6960. <td>
  6961. <code>auth</code></br>
  6962. <em>
  6963. <a href="#external-secrets.io/v1.GithubAppAuth">
  6964. GithubAppAuth
  6965. </a>
  6966. </em>
  6967. </td>
  6968. <td>
  6969. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6970. </td>
  6971. </tr>
  6972. <tr>
  6973. <td>
  6974. <code>appID</code></br>
  6975. <em>
  6976. int64
  6977. </em>
  6978. </td>
  6979. <td>
  6980. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6981. </td>
  6982. </tr>
  6983. <tr>
  6984. <td>
  6985. <code>installationID</code></br>
  6986. <em>
  6987. int64
  6988. </em>
  6989. </td>
  6990. <td>
  6991. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6992. </td>
  6993. </tr>
  6994. <tr>
  6995. <td>
  6996. <code>organization</code></br>
  6997. <em>
  6998. string
  6999. </em>
  7000. </td>
  7001. <td>
  7002. <p>organization will be used to fetch secrets from the Github organization</p>
  7003. </td>
  7004. </tr>
  7005. <tr>
  7006. <td>
  7007. <code>repository</code></br>
  7008. <em>
  7009. string
  7010. </em>
  7011. </td>
  7012. <td>
  7013. <em>(Optional)</em>
  7014. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  7015. </td>
  7016. </tr>
  7017. <tr>
  7018. <td>
  7019. <code>environment</code></br>
  7020. <em>
  7021. string
  7022. </em>
  7023. </td>
  7024. <td>
  7025. <em>(Optional)</em>
  7026. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  7027. </td>
  7028. </tr>
  7029. </tbody>
  7030. </table>
  7031. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  7032. </h3>
  7033. <p>
  7034. (<em>Appears on:</em>
  7035. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  7036. </p>
  7037. <p>
  7038. <p>GitlabAuth defines the authentication method for accessing GitLab API.</p>
  7039. </p>
  7040. <table>
  7041. <thead>
  7042. <tr>
  7043. <th>Field</th>
  7044. <th>Description</th>
  7045. </tr>
  7046. </thead>
  7047. <tbody>
  7048. <tr>
  7049. <td>
  7050. <code>SecretRef</code></br>
  7051. <em>
  7052. <a href="#external-secrets.io/v1.GitlabSecretRef">
  7053. GitlabSecretRef
  7054. </a>
  7055. </em>
  7056. </td>
  7057. <td>
  7058. </td>
  7059. </tr>
  7060. </tbody>
  7061. </table>
  7062. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  7063. </h3>
  7064. <p>
  7065. (<em>Appears on:</em>
  7066. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7067. </p>
  7068. <p>
  7069. <p>GitlabProvider configures a store to sync secrets with a GitLab instance.</p>
  7070. </p>
  7071. <table>
  7072. <thead>
  7073. <tr>
  7074. <th>Field</th>
  7075. <th>Description</th>
  7076. </tr>
  7077. </thead>
  7078. <tbody>
  7079. <tr>
  7080. <td>
  7081. <code>url</code></br>
  7082. <em>
  7083. string
  7084. </em>
  7085. </td>
  7086. <td>
  7087. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  7088. </td>
  7089. </tr>
  7090. <tr>
  7091. <td>
  7092. <code>auth</code></br>
  7093. <em>
  7094. <a href="#external-secrets.io/v1.GitlabAuth">
  7095. GitlabAuth
  7096. </a>
  7097. </em>
  7098. </td>
  7099. <td>
  7100. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  7101. </td>
  7102. </tr>
  7103. <tr>
  7104. <td>
  7105. <code>projectID</code></br>
  7106. <em>
  7107. string
  7108. </em>
  7109. </td>
  7110. <td>
  7111. <p>ProjectID specifies a project where secrets are located.</p>
  7112. </td>
  7113. </tr>
  7114. <tr>
  7115. <td>
  7116. <code>inheritFromGroups</code></br>
  7117. <em>
  7118. bool
  7119. </em>
  7120. </td>
  7121. <td>
  7122. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  7123. </td>
  7124. </tr>
  7125. <tr>
  7126. <td>
  7127. <code>groupIDs</code></br>
  7128. <em>
  7129. []string
  7130. </em>
  7131. </td>
  7132. <td>
  7133. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  7134. </td>
  7135. </tr>
  7136. <tr>
  7137. <td>
  7138. <code>environment</code></br>
  7139. <em>
  7140. string
  7141. </em>
  7142. </td>
  7143. <td>
  7144. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  7145. </td>
  7146. </tr>
  7147. <tr>
  7148. <td>
  7149. <code>caBundle</code></br>
  7150. <em>
  7151. []byte
  7152. </em>
  7153. </td>
  7154. <td>
  7155. <em>(Optional)</em>
  7156. <p>Base64 encoded certificate for the GitLab server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  7157. can be performed.</p>
  7158. </td>
  7159. </tr>
  7160. <tr>
  7161. <td>
  7162. <code>caProvider</code></br>
  7163. <em>
  7164. <a href="#external-secrets.io/v1.CAProvider">
  7165. CAProvider
  7166. </a>
  7167. </em>
  7168. </td>
  7169. <td>
  7170. <em>(Optional)</em>
  7171. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  7172. </td>
  7173. </tr>
  7174. </tbody>
  7175. </table>
  7176. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  7177. </h3>
  7178. <p>
  7179. (<em>Appears on:</em>
  7180. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  7181. </p>
  7182. <p>
  7183. <p>GitlabSecretRef contains the secret reference for GitLab authentication credentials.</p>
  7184. </p>
  7185. <table>
  7186. <thead>
  7187. <tr>
  7188. <th>Field</th>
  7189. <th>Description</th>
  7190. </tr>
  7191. </thead>
  7192. <tbody>
  7193. <tr>
  7194. <td>
  7195. <code>accessToken</code></br>
  7196. <em>
  7197. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7198. External Secrets meta/v1.SecretKeySelector
  7199. </a>
  7200. </em>
  7201. </td>
  7202. <td>
  7203. <p>AccessToken is used for authentication.</p>
  7204. </td>
  7205. </tr>
  7206. </tbody>
  7207. </table>
  7208. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  7209. </h3>
  7210. <p>
  7211. (<em>Appears on:</em>
  7212. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  7213. </p>
  7214. <p>
  7215. <p>IBMAuth defines authentication options for connecting to IBM Cloud Secrets Manager.</p>
  7216. </p>
  7217. <table>
  7218. <thead>
  7219. <tr>
  7220. <th>Field</th>
  7221. <th>Description</th>
  7222. </tr>
  7223. </thead>
  7224. <tbody>
  7225. <tr>
  7226. <td>
  7227. <code>secretRef</code></br>
  7228. <em>
  7229. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  7230. IBMAuthSecretRef
  7231. </a>
  7232. </em>
  7233. </td>
  7234. <td>
  7235. </td>
  7236. </tr>
  7237. <tr>
  7238. <td>
  7239. <code>containerAuth</code></br>
  7240. <em>
  7241. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  7242. IBMAuthContainerAuth
  7243. </a>
  7244. </em>
  7245. </td>
  7246. <td>
  7247. </td>
  7248. </tr>
  7249. </tbody>
  7250. </table>
  7251. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  7252. </h3>
  7253. <p>
  7254. (<em>Appears on:</em>
  7255. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7256. </p>
  7257. <p>
  7258. <p>IBMAuthContainerAuth defines container-based authentication with IAM Trusted Profile.</p>
  7259. </p>
  7260. <table>
  7261. <thead>
  7262. <tr>
  7263. <th>Field</th>
  7264. <th>Description</th>
  7265. </tr>
  7266. </thead>
  7267. <tbody>
  7268. <tr>
  7269. <td>
  7270. <code>profile</code></br>
  7271. <em>
  7272. string
  7273. </em>
  7274. </td>
  7275. <td>
  7276. <p>the IBM Trusted Profile</p>
  7277. </td>
  7278. </tr>
  7279. <tr>
  7280. <td>
  7281. <code>tokenLocation</code></br>
  7282. <em>
  7283. string
  7284. </em>
  7285. </td>
  7286. <td>
  7287. <p>Location the token is mounted on the pod</p>
  7288. </td>
  7289. </tr>
  7290. <tr>
  7291. <td>
  7292. <code>iamEndpoint</code></br>
  7293. <em>
  7294. string
  7295. </em>
  7296. </td>
  7297. <td>
  7298. </td>
  7299. </tr>
  7300. </tbody>
  7301. </table>
  7302. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  7303. </h3>
  7304. <p>
  7305. (<em>Appears on:</em>
  7306. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7307. </p>
  7308. <p>
  7309. <p>IBMAuthSecretRef contains the secret reference for IBM Cloud API key authentication.</p>
  7310. </p>
  7311. <table>
  7312. <thead>
  7313. <tr>
  7314. <th>Field</th>
  7315. <th>Description</th>
  7316. </tr>
  7317. </thead>
  7318. <tbody>
  7319. <tr>
  7320. <td>
  7321. <code>secretApiKeySecretRef</code></br>
  7322. <em>
  7323. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7324. External Secrets meta/v1.SecretKeySelector
  7325. </a>
  7326. </em>
  7327. </td>
  7328. <td>
  7329. <p>The SecretAccessKey is used for authentication</p>
  7330. </td>
  7331. </tr>
  7332. </tbody>
  7333. </table>
  7334. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  7335. </h3>
  7336. <p>
  7337. (<em>Appears on:</em>
  7338. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7339. </p>
  7340. <p>
  7341. <p>IBMProvider configures a store to sync secrets using a IBM Cloud Secrets Manager
  7342. backend.</p>
  7343. </p>
  7344. <table>
  7345. <thead>
  7346. <tr>
  7347. <th>Field</th>
  7348. <th>Description</th>
  7349. </tr>
  7350. </thead>
  7351. <tbody>
  7352. <tr>
  7353. <td>
  7354. <code>auth</code></br>
  7355. <em>
  7356. <a href="#external-secrets.io/v1.IBMAuth">
  7357. IBMAuth
  7358. </a>
  7359. </em>
  7360. </td>
  7361. <td>
  7362. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  7363. </td>
  7364. </tr>
  7365. <tr>
  7366. <td>
  7367. <code>serviceUrl</code></br>
  7368. <em>
  7369. string
  7370. </em>
  7371. </td>
  7372. <td>
  7373. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  7374. </td>
  7375. </tr>
  7376. </tbody>
  7377. </table>
  7378. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  7379. </h3>
  7380. <p>
  7381. (<em>Appears on:</em>
  7382. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7383. </p>
  7384. <p>
  7385. <p>InfisicalAuth specifies the authentication configuration for Infisical.</p>
  7386. </p>
  7387. <table>
  7388. <thead>
  7389. <tr>
  7390. <th>Field</th>
  7391. <th>Description</th>
  7392. </tr>
  7393. </thead>
  7394. <tbody>
  7395. <tr>
  7396. <td>
  7397. <code>universalAuthCredentials</code></br>
  7398. <em>
  7399. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  7400. UniversalAuthCredentials
  7401. </a>
  7402. </em>
  7403. </td>
  7404. <td>
  7405. <em>(Optional)</em>
  7406. </td>
  7407. </tr>
  7408. <tr>
  7409. <td>
  7410. <code>azureAuthCredentials</code></br>
  7411. <em>
  7412. <a href="#external-secrets.io/v1.AzureAuthCredentials">
  7413. AzureAuthCredentials
  7414. </a>
  7415. </em>
  7416. </td>
  7417. <td>
  7418. <em>(Optional)</em>
  7419. </td>
  7420. </tr>
  7421. <tr>
  7422. <td>
  7423. <code>gcpIdTokenAuthCredentials</code></br>
  7424. <em>
  7425. <a href="#external-secrets.io/v1.GcpIDTokenAuthCredentials">
  7426. GcpIDTokenAuthCredentials
  7427. </a>
  7428. </em>
  7429. </td>
  7430. <td>
  7431. <em>(Optional)</em>
  7432. </td>
  7433. </tr>
  7434. <tr>
  7435. <td>
  7436. <code>gcpIamAuthCredentials</code></br>
  7437. <em>
  7438. <a href="#external-secrets.io/v1.GcpIamAuthCredentials">
  7439. GcpIamAuthCredentials
  7440. </a>
  7441. </em>
  7442. </td>
  7443. <td>
  7444. <em>(Optional)</em>
  7445. </td>
  7446. </tr>
  7447. <tr>
  7448. <td>
  7449. <code>jwtAuthCredentials</code></br>
  7450. <em>
  7451. <a href="#external-secrets.io/v1.JwtAuthCredentials">
  7452. JwtAuthCredentials
  7453. </a>
  7454. </em>
  7455. </td>
  7456. <td>
  7457. <em>(Optional)</em>
  7458. </td>
  7459. </tr>
  7460. <tr>
  7461. <td>
  7462. <code>ldapAuthCredentials</code></br>
  7463. <em>
  7464. <a href="#external-secrets.io/v1.LdapAuthCredentials">
  7465. LdapAuthCredentials
  7466. </a>
  7467. </em>
  7468. </td>
  7469. <td>
  7470. <em>(Optional)</em>
  7471. </td>
  7472. </tr>
  7473. <tr>
  7474. <td>
  7475. <code>ociAuthCredentials</code></br>
  7476. <em>
  7477. <a href="#external-secrets.io/v1.OciAuthCredentials">
  7478. OciAuthCredentials
  7479. </a>
  7480. </em>
  7481. </td>
  7482. <td>
  7483. <em>(Optional)</em>
  7484. </td>
  7485. </tr>
  7486. <tr>
  7487. <td>
  7488. <code>kubernetesAuthCredentials</code></br>
  7489. <em>
  7490. <a href="#external-secrets.io/v1.KubernetesAuthCredentials">
  7491. KubernetesAuthCredentials
  7492. </a>
  7493. </em>
  7494. </td>
  7495. <td>
  7496. <em>(Optional)</em>
  7497. </td>
  7498. </tr>
  7499. <tr>
  7500. <td>
  7501. <code>awsAuthCredentials</code></br>
  7502. <em>
  7503. <a href="#external-secrets.io/v1.AwsAuthCredentials">
  7504. AwsAuthCredentials
  7505. </a>
  7506. </em>
  7507. </td>
  7508. <td>
  7509. <em>(Optional)</em>
  7510. </td>
  7511. </tr>
  7512. <tr>
  7513. <td>
  7514. <code>tokenAuthCredentials</code></br>
  7515. <em>
  7516. <a href="#external-secrets.io/v1.TokenAuthCredentials">
  7517. TokenAuthCredentials
  7518. </a>
  7519. </em>
  7520. </td>
  7521. <td>
  7522. <em>(Optional)</em>
  7523. </td>
  7524. </tr>
  7525. </tbody>
  7526. </table>
  7527. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  7528. </h3>
  7529. <p>
  7530. (<em>Appears on:</em>
  7531. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7532. </p>
  7533. <p>
  7534. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  7535. </p>
  7536. <table>
  7537. <thead>
  7538. <tr>
  7539. <th>Field</th>
  7540. <th>Description</th>
  7541. </tr>
  7542. </thead>
  7543. <tbody>
  7544. <tr>
  7545. <td>
  7546. <code>auth</code></br>
  7547. <em>
  7548. <a href="#external-secrets.io/v1.InfisicalAuth">
  7549. InfisicalAuth
  7550. </a>
  7551. </em>
  7552. </td>
  7553. <td>
  7554. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  7555. </td>
  7556. </tr>
  7557. <tr>
  7558. <td>
  7559. <code>secretsScope</code></br>
  7560. <em>
  7561. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  7562. MachineIdentityScopeInWorkspace
  7563. </a>
  7564. </em>
  7565. </td>
  7566. <td>
  7567. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  7568. </td>
  7569. </tr>
  7570. <tr>
  7571. <td>
  7572. <code>hostAPI</code></br>
  7573. <em>
  7574. string
  7575. </em>
  7576. </td>
  7577. <td>
  7578. <em>(Optional)</em>
  7579. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  7580. </td>
  7581. </tr>
  7582. </tbody>
  7583. </table>
  7584. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  7585. </h3>
  7586. <p>
  7587. (<em>Appears on:</em>
  7588. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7589. </p>
  7590. <p>
  7591. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  7592. </p>
  7593. <table>
  7594. <thead>
  7595. <tr>
  7596. <th>Field</th>
  7597. <th>Description</th>
  7598. </tr>
  7599. </thead>
  7600. <tbody>
  7601. <tr>
  7602. <td>
  7603. <code>name</code></br>
  7604. <em>
  7605. string
  7606. </em>
  7607. </td>
  7608. <td>
  7609. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  7610. </td>
  7611. </tr>
  7612. <tr>
  7613. <td>
  7614. <code>version</code></br>
  7615. <em>
  7616. string
  7617. </em>
  7618. </td>
  7619. <td>
  7620. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  7621. </td>
  7622. </tr>
  7623. </tbody>
  7624. </table>
  7625. <h3 id="external-secrets.io/v1.JwtAuthCredentials">JwtAuthCredentials
  7626. </h3>
  7627. <p>
  7628. (<em>Appears on:</em>
  7629. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7630. </p>
  7631. <p>
  7632. <p>JwtAuthCredentials represents the credentials for JWT authentication.</p>
  7633. </p>
  7634. <table>
  7635. <thead>
  7636. <tr>
  7637. <th>Field</th>
  7638. <th>Description</th>
  7639. </tr>
  7640. </thead>
  7641. <tbody>
  7642. <tr>
  7643. <td>
  7644. <code>identityId</code></br>
  7645. <em>
  7646. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7647. External Secrets meta/v1.SecretKeySelector
  7648. </a>
  7649. </em>
  7650. </td>
  7651. <td>
  7652. </td>
  7653. </tr>
  7654. <tr>
  7655. <td>
  7656. <code>jwt</code></br>
  7657. <em>
  7658. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7659. External Secrets meta/v1.SecretKeySelector
  7660. </a>
  7661. </em>
  7662. </td>
  7663. <td>
  7664. </td>
  7665. </tr>
  7666. </tbody>
  7667. </table>
  7668. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  7669. </h3>
  7670. <p>
  7671. (<em>Appears on:</em>
  7672. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7673. </p>
  7674. <p>
  7675. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  7676. </p>
  7677. <table>
  7678. <thead>
  7679. <tr>
  7680. <th>Field</th>
  7681. <th>Description</th>
  7682. </tr>
  7683. </thead>
  7684. <tbody>
  7685. <tr>
  7686. <td>
  7687. <code>authRef</code></br>
  7688. <em>
  7689. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7690. External Secrets meta/v1.SecretKeySelector
  7691. </a>
  7692. </em>
  7693. </td>
  7694. <td>
  7695. </td>
  7696. </tr>
  7697. <tr>
  7698. <td>
  7699. <code>folderID</code></br>
  7700. <em>
  7701. string
  7702. </em>
  7703. </td>
  7704. <td>
  7705. </td>
  7706. </tr>
  7707. </tbody>
  7708. </table>
  7709. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  7710. </h3>
  7711. <p>
  7712. (<em>Appears on:</em>
  7713. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7714. </p>
  7715. <p>
  7716. <p>KubernetesAuth defines authentication options for connecting to a Kubernetes cluster.</p>
  7717. </p>
  7718. <table>
  7719. <thead>
  7720. <tr>
  7721. <th>Field</th>
  7722. <th>Description</th>
  7723. </tr>
  7724. </thead>
  7725. <tbody>
  7726. <tr>
  7727. <td>
  7728. <code>cert</code></br>
  7729. <em>
  7730. <a href="#external-secrets.io/v1.CertAuth">
  7731. CertAuth
  7732. </a>
  7733. </em>
  7734. </td>
  7735. <td>
  7736. <em>(Optional)</em>
  7737. <p>has both clientCert and clientKey as secretKeySelector</p>
  7738. </td>
  7739. </tr>
  7740. <tr>
  7741. <td>
  7742. <code>token</code></br>
  7743. <em>
  7744. <a href="#external-secrets.io/v1.TokenAuth">
  7745. TokenAuth
  7746. </a>
  7747. </em>
  7748. </td>
  7749. <td>
  7750. <em>(Optional)</em>
  7751. <p>use static token to authenticate with</p>
  7752. </td>
  7753. </tr>
  7754. <tr>
  7755. <td>
  7756. <code>serviceAccount</code></br>
  7757. <em>
  7758. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7759. External Secrets meta/v1.ServiceAccountSelector
  7760. </a>
  7761. </em>
  7762. </td>
  7763. <td>
  7764. <em>(Optional)</em>
  7765. <p>points to a service account that should be used for authentication</p>
  7766. </td>
  7767. </tr>
  7768. </tbody>
  7769. </table>
  7770. <h3 id="external-secrets.io/v1.KubernetesAuthCredentials">KubernetesAuthCredentials
  7771. </h3>
  7772. <p>
  7773. (<em>Appears on:</em>
  7774. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7775. </p>
  7776. <p>
  7777. <p>KubernetesAuthCredentials represents the credentials for Kubernetes authentication.</p>
  7778. </p>
  7779. <table>
  7780. <thead>
  7781. <tr>
  7782. <th>Field</th>
  7783. <th>Description</th>
  7784. </tr>
  7785. </thead>
  7786. <tbody>
  7787. <tr>
  7788. <td>
  7789. <code>identityId</code></br>
  7790. <em>
  7791. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7792. External Secrets meta/v1.SecretKeySelector
  7793. </a>
  7794. </em>
  7795. </td>
  7796. <td>
  7797. </td>
  7798. </tr>
  7799. <tr>
  7800. <td>
  7801. <code>serviceAccountTokenPath</code></br>
  7802. <em>
  7803. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7804. External Secrets meta/v1.SecretKeySelector
  7805. </a>
  7806. </em>
  7807. </td>
  7808. <td>
  7809. <em>(Optional)</em>
  7810. </td>
  7811. </tr>
  7812. </tbody>
  7813. </table>
  7814. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  7815. </h3>
  7816. <p>
  7817. (<em>Appears on:</em>
  7818. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7819. </p>
  7820. <p>
  7821. <p>KubernetesProvider configures a store to sync secrets with a Kubernetes instance.</p>
  7822. </p>
  7823. <table>
  7824. <thead>
  7825. <tr>
  7826. <th>Field</th>
  7827. <th>Description</th>
  7828. </tr>
  7829. </thead>
  7830. <tbody>
  7831. <tr>
  7832. <td>
  7833. <code>server</code></br>
  7834. <em>
  7835. <a href="#external-secrets.io/v1.KubernetesServer">
  7836. KubernetesServer
  7837. </a>
  7838. </em>
  7839. </td>
  7840. <td>
  7841. <em>(Optional)</em>
  7842. <p>configures the Kubernetes server Address.</p>
  7843. </td>
  7844. </tr>
  7845. <tr>
  7846. <td>
  7847. <code>auth</code></br>
  7848. <em>
  7849. <a href="#external-secrets.io/v1.KubernetesAuth">
  7850. KubernetesAuth
  7851. </a>
  7852. </em>
  7853. </td>
  7854. <td>
  7855. <em>(Optional)</em>
  7856. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  7857. </td>
  7858. </tr>
  7859. <tr>
  7860. <td>
  7861. <code>authRef</code></br>
  7862. <em>
  7863. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7864. External Secrets meta/v1.SecretKeySelector
  7865. </a>
  7866. </em>
  7867. </td>
  7868. <td>
  7869. <em>(Optional)</em>
  7870. <p>A reference to a secret that contains the auth information.</p>
  7871. </td>
  7872. </tr>
  7873. <tr>
  7874. <td>
  7875. <code>remoteNamespace</code></br>
  7876. <em>
  7877. string
  7878. </em>
  7879. </td>
  7880. <td>
  7881. <em>(Optional)</em>
  7882. <p>Remote namespace to fetch the secrets from</p>
  7883. </td>
  7884. </tr>
  7885. </tbody>
  7886. </table>
  7887. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  7888. </h3>
  7889. <p>
  7890. (<em>Appears on:</em>
  7891. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7892. </p>
  7893. <p>
  7894. <p>KubernetesServer defines configuration for connecting to a Kubernetes API server.</p>
  7895. </p>
  7896. <table>
  7897. <thead>
  7898. <tr>
  7899. <th>Field</th>
  7900. <th>Description</th>
  7901. </tr>
  7902. </thead>
  7903. <tbody>
  7904. <tr>
  7905. <td>
  7906. <code>url</code></br>
  7907. <em>
  7908. string
  7909. </em>
  7910. </td>
  7911. <td>
  7912. <em>(Optional)</em>
  7913. <p>configures the Kubernetes server Address.</p>
  7914. </td>
  7915. </tr>
  7916. <tr>
  7917. <td>
  7918. <code>caBundle</code></br>
  7919. <em>
  7920. []byte
  7921. </em>
  7922. </td>
  7923. <td>
  7924. <em>(Optional)</em>
  7925. <p>CABundle is a base64-encoded CA certificate</p>
  7926. </td>
  7927. </tr>
  7928. <tr>
  7929. <td>
  7930. <code>caProvider</code></br>
  7931. <em>
  7932. <a href="#external-secrets.io/v1.CAProvider">
  7933. CAProvider
  7934. </a>
  7935. </em>
  7936. </td>
  7937. <td>
  7938. <em>(Optional)</em>
  7939. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  7940. </td>
  7941. </tr>
  7942. </tbody>
  7943. </table>
  7944. <h3 id="external-secrets.io/v1.LdapAuthCredentials">LdapAuthCredentials
  7945. </h3>
  7946. <p>
  7947. (<em>Appears on:</em>
  7948. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7949. </p>
  7950. <p>
  7951. <p>LdapAuthCredentials represents the credentials for LDAP authentication.</p>
  7952. </p>
  7953. <table>
  7954. <thead>
  7955. <tr>
  7956. <th>Field</th>
  7957. <th>Description</th>
  7958. </tr>
  7959. </thead>
  7960. <tbody>
  7961. <tr>
  7962. <td>
  7963. <code>identityId</code></br>
  7964. <em>
  7965. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7966. External Secrets meta/v1.SecretKeySelector
  7967. </a>
  7968. </em>
  7969. </td>
  7970. <td>
  7971. </td>
  7972. </tr>
  7973. <tr>
  7974. <td>
  7975. <code>ldapPassword</code></br>
  7976. <em>
  7977. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7978. External Secrets meta/v1.SecretKeySelector
  7979. </a>
  7980. </em>
  7981. </td>
  7982. <td>
  7983. </td>
  7984. </tr>
  7985. <tr>
  7986. <td>
  7987. <code>ldapUsername</code></br>
  7988. <em>
  7989. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7990. External Secrets meta/v1.SecretKeySelector
  7991. </a>
  7992. </em>
  7993. </td>
  7994. <td>
  7995. </td>
  7996. </tr>
  7997. </tbody>
  7998. </table>
  7999. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  8000. </h3>
  8001. <p>
  8002. (<em>Appears on:</em>
  8003. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  8004. </p>
  8005. <p>
  8006. <p>MachineIdentityScopeInWorkspace defines the scope for machine identity within a workspace.</p>
  8007. </p>
  8008. <table>
  8009. <thead>
  8010. <tr>
  8011. <th>Field</th>
  8012. <th>Description</th>
  8013. </tr>
  8014. </thead>
  8015. <tbody>
  8016. <tr>
  8017. <td>
  8018. <code>secretsPath</code></br>
  8019. <em>
  8020. string
  8021. </em>
  8022. </td>
  8023. <td>
  8024. <em>(Optional)</em>
  8025. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  8026. </td>
  8027. </tr>
  8028. <tr>
  8029. <td>
  8030. <code>recursive</code></br>
  8031. <em>
  8032. bool
  8033. </em>
  8034. </td>
  8035. <td>
  8036. <em>(Optional)</em>
  8037. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  8038. </td>
  8039. </tr>
  8040. <tr>
  8041. <td>
  8042. <code>environmentSlug</code></br>
  8043. <em>
  8044. string
  8045. </em>
  8046. </td>
  8047. <td>
  8048. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  8049. </td>
  8050. </tr>
  8051. <tr>
  8052. <td>
  8053. <code>projectSlug</code></br>
  8054. <em>
  8055. string
  8056. </em>
  8057. </td>
  8058. <td>
  8059. <p>ProjectSlug is the required slug identifier for the project.</p>
  8060. </td>
  8061. </tr>
  8062. <tr>
  8063. <td>
  8064. <code>expandSecretReferences</code></br>
  8065. <em>
  8066. bool
  8067. </em>
  8068. </td>
  8069. <td>
  8070. <em>(Optional)</em>
  8071. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  8072. </td>
  8073. </tr>
  8074. </tbody>
  8075. </table>
  8076. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  8077. (<code>bool</code> alias)</p></h3>
  8078. <p>
  8079. <p>MaintenanceStatus defines a type for different maintenance states of a provider schema.</p>
  8080. </p>
  8081. <table>
  8082. <thead>
  8083. <tr>
  8084. <th>Value</th>
  8085. <th>Description</th>
  8086. </tr>
  8087. </thead>
  8088. <tbody><tr><td><p>true</p></td>
  8089. <td></td>
  8090. </tr><tr><td><p>false</p></td>
  8091. <td></td>
  8092. </tr></tbody>
  8093. </table>
  8094. <h3 id="external-secrets.io/v1.ManifestReference">ManifestReference
  8095. </h3>
  8096. <p>
  8097. (<em>Appears on:</em>
  8098. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  8099. </p>
  8100. <p>
  8101. <p>ManifestReference defines a custom Kubernetes resource type to be created
  8102. instead of a Secret. This allows ExternalSecret to create ConfigMaps,
  8103. Custom Resources, or any other Kubernetes resource type.</p>
  8104. </p>
  8105. <table>
  8106. <thead>
  8107. <tr>
  8108. <th>Field</th>
  8109. <th>Description</th>
  8110. </tr>
  8111. </thead>
  8112. <tbody>
  8113. <tr>
  8114. <td>
  8115. <code>apiVersion</code></br>
  8116. <em>
  8117. string
  8118. </em>
  8119. </td>
  8120. <td>
  8121. <p>APIVersion of the target resource (e.g., &ldquo;v1&rdquo; for ConfigMap, &ldquo;argoproj.io/v1alpha1&rdquo; for ArgoCD Application)</p>
  8122. </td>
  8123. </tr>
  8124. <tr>
  8125. <td>
  8126. <code>kind</code></br>
  8127. <em>
  8128. string
  8129. </em>
  8130. </td>
  8131. <td>
  8132. <p>Kind of the target resource (e.g., &ldquo;ConfigMap&rdquo;, &ldquo;Application&rdquo;)</p>
  8133. </td>
  8134. </tr>
  8135. </tbody>
  8136. </table>
  8137. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  8138. </h3>
  8139. <p>
  8140. (<em>Appears on:</em>
  8141. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  8142. </p>
  8143. <p>
  8144. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  8145. </p>
  8146. <table>
  8147. <thead>
  8148. <tr>
  8149. <th>Field</th>
  8150. <th>Description</th>
  8151. </tr>
  8152. </thead>
  8153. <tbody>
  8154. <tr>
  8155. <td>
  8156. <code>usernameSecret</code></br>
  8157. <em>
  8158. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8159. External Secrets meta/v1.SecretKeySelector
  8160. </a>
  8161. </em>
  8162. </td>
  8163. <td>
  8164. </td>
  8165. </tr>
  8166. <tr>
  8167. <td>
  8168. <code>passwordSecret</code></br>
  8169. <em>
  8170. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8171. External Secrets meta/v1.SecretKeySelector
  8172. </a>
  8173. </em>
  8174. </td>
  8175. <td>
  8176. </td>
  8177. </tr>
  8178. </tbody>
  8179. </table>
  8180. <h3 id="external-secrets.io/v1.NgrokAuth">NgrokAuth
  8181. </h3>
  8182. <p>
  8183. (<em>Appears on:</em>
  8184. <a href="#external-secrets.io/v1.NgrokProvider">NgrokProvider</a>)
  8185. </p>
  8186. <p>
  8187. <p>NgrokAuth configures the authentication method for the ngrok provider.</p>
  8188. </p>
  8189. <table>
  8190. <thead>
  8191. <tr>
  8192. <th>Field</th>
  8193. <th>Description</th>
  8194. </tr>
  8195. </thead>
  8196. <tbody>
  8197. <tr>
  8198. <td>
  8199. <code>apiKey</code></br>
  8200. <em>
  8201. <a href="#external-secrets.io/v1.NgrokProviderSecretRef">
  8202. NgrokProviderSecretRef
  8203. </a>
  8204. </em>
  8205. </td>
  8206. <td>
  8207. <em>(Optional)</em>
  8208. <p>APIKey is the API Key used to authenticate with ngrok. See <a href="https://ngrok.com/docs/api/#authentication">https://ngrok.com/docs/api/#authentication</a></p>
  8209. </td>
  8210. </tr>
  8211. </tbody>
  8212. </table>
  8213. <h3 id="external-secrets.io/v1.NgrokProvider">NgrokProvider
  8214. </h3>
  8215. <p>
  8216. (<em>Appears on:</em>
  8217. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8218. </p>
  8219. <p>
  8220. <p>NgrokProvider configures a store to sync secrets with a ngrok vault to use in traffic policies.
  8221. See: <a href="https://ngrok.com/blog-post/secrets-for-traffic-policy">https://ngrok.com/blog-post/secrets-for-traffic-policy</a></p>
  8222. </p>
  8223. <table>
  8224. <thead>
  8225. <tr>
  8226. <th>Field</th>
  8227. <th>Description</th>
  8228. </tr>
  8229. </thead>
  8230. <tbody>
  8231. <tr>
  8232. <td>
  8233. <code>apiUrl</code></br>
  8234. <em>
  8235. string
  8236. </em>
  8237. </td>
  8238. <td>
  8239. <p>APIURL is the URL of the ngrok API.</p>
  8240. </td>
  8241. </tr>
  8242. <tr>
  8243. <td>
  8244. <code>auth</code></br>
  8245. <em>
  8246. <a href="#external-secrets.io/v1.NgrokAuth">
  8247. NgrokAuth
  8248. </a>
  8249. </em>
  8250. </td>
  8251. <td>
  8252. <p>Auth configures how the ngrok provider authenticates with the ngrok API.</p>
  8253. </td>
  8254. </tr>
  8255. <tr>
  8256. <td>
  8257. <code>vault</code></br>
  8258. <em>
  8259. <a href="#external-secrets.io/v1.NgrokVault">
  8260. NgrokVault
  8261. </a>
  8262. </em>
  8263. </td>
  8264. <td>
  8265. <p>Vault configures the ngrok vault to sync secrets with.</p>
  8266. </td>
  8267. </tr>
  8268. </tbody>
  8269. </table>
  8270. <h3 id="external-secrets.io/v1.NgrokProviderSecretRef">NgrokProviderSecretRef
  8271. </h3>
  8272. <p>
  8273. (<em>Appears on:</em>
  8274. <a href="#external-secrets.io/v1.NgrokAuth">NgrokAuth</a>)
  8275. </p>
  8276. <p>
  8277. <p>NgrokProviderSecretRef contains the secret reference for the ngrok provider.</p>
  8278. </p>
  8279. <table>
  8280. <thead>
  8281. <tr>
  8282. <th>Field</th>
  8283. <th>Description</th>
  8284. </tr>
  8285. </thead>
  8286. <tbody>
  8287. <tr>
  8288. <td>
  8289. <code>secretRef</code></br>
  8290. <em>
  8291. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8292. External Secrets meta/v1.SecretKeySelector
  8293. </a>
  8294. </em>
  8295. </td>
  8296. <td>
  8297. <em>(Optional)</em>
  8298. <p>SecretRef is a reference to a secret containing the ngrok API key.</p>
  8299. </td>
  8300. </tr>
  8301. </tbody>
  8302. </table>
  8303. <h3 id="external-secrets.io/v1.NgrokVault">NgrokVault
  8304. </h3>
  8305. <p>
  8306. (<em>Appears on:</em>
  8307. <a href="#external-secrets.io/v1.NgrokProvider">NgrokProvider</a>)
  8308. </p>
  8309. <p>
  8310. <p>NgrokVault configures the ngrok vault to sync secrets with.</p>
  8311. </p>
  8312. <table>
  8313. <thead>
  8314. <tr>
  8315. <th>Field</th>
  8316. <th>Description</th>
  8317. </tr>
  8318. </thead>
  8319. <tbody>
  8320. <tr>
  8321. <td>
  8322. <code>name</code></br>
  8323. <em>
  8324. string
  8325. </em>
  8326. </td>
  8327. <td>
  8328. <p>Name is the name of the ngrok vault to sync secrets with.</p>
  8329. </td>
  8330. </tr>
  8331. </tbody>
  8332. </table>
  8333. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  8334. </h3>
  8335. <p>
  8336. <p>NoSecretError shall be returned when a GetSecret can not find the
  8337. desired secret. This is used for deletionPolicy.</p>
  8338. </p>
  8339. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  8340. </h3>
  8341. <p>
  8342. <p>NotModifiedError to signal that the webhook received no changes,
  8343. and it should just return without doing anything.</p>
  8344. </p>
  8345. <h3 id="external-secrets.io/v1.OciAuthCredentials">OciAuthCredentials
  8346. </h3>
  8347. <p>
  8348. (<em>Appears on:</em>
  8349. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  8350. </p>
  8351. <p>
  8352. <p>OciAuthCredentials represents the credentials for OCI authentication.</p>
  8353. </p>
  8354. <table>
  8355. <thead>
  8356. <tr>
  8357. <th>Field</th>
  8358. <th>Description</th>
  8359. </tr>
  8360. </thead>
  8361. <tbody>
  8362. <tr>
  8363. <td>
  8364. <code>identityId</code></br>
  8365. <em>
  8366. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8367. External Secrets meta/v1.SecretKeySelector
  8368. </a>
  8369. </em>
  8370. </td>
  8371. <td>
  8372. </td>
  8373. </tr>
  8374. <tr>
  8375. <td>
  8376. <code>privateKey</code></br>
  8377. <em>
  8378. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8379. External Secrets meta/v1.SecretKeySelector
  8380. </a>
  8381. </em>
  8382. </td>
  8383. <td>
  8384. </td>
  8385. </tr>
  8386. <tr>
  8387. <td>
  8388. <code>privateKeyPassphrase</code></br>
  8389. <em>
  8390. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8391. External Secrets meta/v1.SecretKeySelector
  8392. </a>
  8393. </em>
  8394. </td>
  8395. <td>
  8396. <em>(Optional)</em>
  8397. </td>
  8398. </tr>
  8399. <tr>
  8400. <td>
  8401. <code>fingerprint</code></br>
  8402. <em>
  8403. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8404. External Secrets meta/v1.SecretKeySelector
  8405. </a>
  8406. </em>
  8407. </td>
  8408. <td>
  8409. </td>
  8410. </tr>
  8411. <tr>
  8412. <td>
  8413. <code>userId</code></br>
  8414. <em>
  8415. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8416. External Secrets meta/v1.SecretKeySelector
  8417. </a>
  8418. </em>
  8419. </td>
  8420. <td>
  8421. </td>
  8422. </tr>
  8423. <tr>
  8424. <td>
  8425. <code>tenancyId</code></br>
  8426. <em>
  8427. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8428. External Secrets meta/v1.SecretKeySelector
  8429. </a>
  8430. </em>
  8431. </td>
  8432. <td>
  8433. </td>
  8434. </tr>
  8435. <tr>
  8436. <td>
  8437. <code>region</code></br>
  8438. <em>
  8439. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8440. External Secrets meta/v1.SecretKeySelector
  8441. </a>
  8442. </em>
  8443. </td>
  8444. <td>
  8445. </td>
  8446. </tr>
  8447. </tbody>
  8448. </table>
  8449. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  8450. </h3>
  8451. <p>
  8452. (<em>Appears on:</em>
  8453. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  8454. </p>
  8455. <p>
  8456. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  8457. </p>
  8458. <table>
  8459. <thead>
  8460. <tr>
  8461. <th>Field</th>
  8462. <th>Description</th>
  8463. </tr>
  8464. </thead>
  8465. <tbody>
  8466. <tr>
  8467. <td>
  8468. <code>apiKeyRef</code></br>
  8469. <em>
  8470. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8471. External Secrets meta/v1.SecretKeySelector
  8472. </a>
  8473. </em>
  8474. </td>
  8475. <td>
  8476. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  8477. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  8478. </td>
  8479. </tr>
  8480. <tr>
  8481. <td>
  8482. <code>passcodeRef</code></br>
  8483. <em>
  8484. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8485. External Secrets meta/v1.SecretKeySelector
  8486. </a>
  8487. </em>
  8488. </td>
  8489. <td>
  8490. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  8491. </td>
  8492. </tr>
  8493. </tbody>
  8494. </table>
  8495. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  8496. </h3>
  8497. <p>
  8498. (<em>Appears on:</em>
  8499. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8500. </p>
  8501. <p>
  8502. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  8503. Project and Config are required if not using a Service Token.</p>
  8504. </p>
  8505. <table>
  8506. <thead>
  8507. <tr>
  8508. <th>Field</th>
  8509. <th>Description</th>
  8510. </tr>
  8511. </thead>
  8512. <tbody>
  8513. <tr>
  8514. <td>
  8515. <code>auth</code></br>
  8516. <em>
  8517. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  8518. OnboardbaseAuthSecretRef
  8519. </a>
  8520. </em>
  8521. </td>
  8522. <td>
  8523. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  8524. </td>
  8525. </tr>
  8526. <tr>
  8527. <td>
  8528. <code>apiHost</code></br>
  8529. <em>
  8530. string
  8531. </em>
  8532. </td>
  8533. <td>
  8534. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  8535. </td>
  8536. </tr>
  8537. <tr>
  8538. <td>
  8539. <code>project</code></br>
  8540. <em>
  8541. string
  8542. </em>
  8543. </td>
  8544. <td>
  8545. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  8546. </td>
  8547. </tr>
  8548. <tr>
  8549. <td>
  8550. <code>environment</code></br>
  8551. <em>
  8552. string
  8553. </em>
  8554. </td>
  8555. <td>
  8556. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  8557. </td>
  8558. </tr>
  8559. </tbody>
  8560. </table>
  8561. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  8562. </h3>
  8563. <p>
  8564. (<em>Appears on:</em>
  8565. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  8566. </p>
  8567. <p>
  8568. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  8569. </p>
  8570. <table>
  8571. <thead>
  8572. <tr>
  8573. <th>Field</th>
  8574. <th>Description</th>
  8575. </tr>
  8576. </thead>
  8577. <tbody>
  8578. <tr>
  8579. <td>
  8580. <code>secretRef</code></br>
  8581. <em>
  8582. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  8583. OnePasswordAuthSecretRef
  8584. </a>
  8585. </em>
  8586. </td>
  8587. <td>
  8588. </td>
  8589. </tr>
  8590. </tbody>
  8591. </table>
  8592. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  8593. </h3>
  8594. <p>
  8595. (<em>Appears on:</em>
  8596. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  8597. </p>
  8598. <p>
  8599. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  8600. </p>
  8601. <table>
  8602. <thead>
  8603. <tr>
  8604. <th>Field</th>
  8605. <th>Description</th>
  8606. </tr>
  8607. </thead>
  8608. <tbody>
  8609. <tr>
  8610. <td>
  8611. <code>connectTokenSecretRef</code></br>
  8612. <em>
  8613. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8614. External Secrets meta/v1.SecretKeySelector
  8615. </a>
  8616. </em>
  8617. </td>
  8618. <td>
  8619. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  8620. </td>
  8621. </tr>
  8622. </tbody>
  8623. </table>
  8624. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  8625. </h3>
  8626. <p>
  8627. (<em>Appears on:</em>
  8628. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8629. </p>
  8630. <p>
  8631. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  8632. </p>
  8633. <table>
  8634. <thead>
  8635. <tr>
  8636. <th>Field</th>
  8637. <th>Description</th>
  8638. </tr>
  8639. </thead>
  8640. <tbody>
  8641. <tr>
  8642. <td>
  8643. <code>auth</code></br>
  8644. <em>
  8645. <a href="#external-secrets.io/v1.OnePasswordAuth">
  8646. OnePasswordAuth
  8647. </a>
  8648. </em>
  8649. </td>
  8650. <td>
  8651. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  8652. </td>
  8653. </tr>
  8654. <tr>
  8655. <td>
  8656. <code>connectHost</code></br>
  8657. <em>
  8658. string
  8659. </em>
  8660. </td>
  8661. <td>
  8662. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  8663. </td>
  8664. </tr>
  8665. <tr>
  8666. <td>
  8667. <code>vaults</code></br>
  8668. <em>
  8669. map[string]int
  8670. </em>
  8671. </td>
  8672. <td>
  8673. <p>Vaults defines which OnePassword vaults to search in which order</p>
  8674. </td>
  8675. </tr>
  8676. </tbody>
  8677. </table>
  8678. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  8679. </h3>
  8680. <p>
  8681. (<em>Appears on:</em>
  8682. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  8683. </p>
  8684. <p>
  8685. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  8686. </p>
  8687. <table>
  8688. <thead>
  8689. <tr>
  8690. <th>Field</th>
  8691. <th>Description</th>
  8692. </tr>
  8693. </thead>
  8694. <tbody>
  8695. <tr>
  8696. <td>
  8697. <code>serviceAccountSecretRef</code></br>
  8698. <em>
  8699. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8700. External Secrets meta/v1.SecretKeySelector
  8701. </a>
  8702. </em>
  8703. </td>
  8704. <td>
  8705. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  8706. </td>
  8707. </tr>
  8708. </tbody>
  8709. </table>
  8710. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  8711. </h3>
  8712. <p>
  8713. (<em>Appears on:</em>
  8714. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8715. </p>
  8716. <p>
  8717. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  8718. </p>
  8719. <table>
  8720. <thead>
  8721. <tr>
  8722. <th>Field</th>
  8723. <th>Description</th>
  8724. </tr>
  8725. </thead>
  8726. <tbody>
  8727. <tr>
  8728. <td>
  8729. <code>vault</code></br>
  8730. <em>
  8731. string
  8732. </em>
  8733. </td>
  8734. <td>
  8735. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  8736. </td>
  8737. </tr>
  8738. <tr>
  8739. <td>
  8740. <code>integrationInfo</code></br>
  8741. <em>
  8742. <a href="#external-secrets.io/v1.IntegrationInfo">
  8743. IntegrationInfo
  8744. </a>
  8745. </em>
  8746. </td>
  8747. <td>
  8748. <em>(Optional)</em>
  8749. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  8750. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  8751. </td>
  8752. </tr>
  8753. <tr>
  8754. <td>
  8755. <code>auth</code></br>
  8756. <em>
  8757. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  8758. OnePasswordSDKAuth
  8759. </a>
  8760. </em>
  8761. </td>
  8762. <td>
  8763. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  8764. </td>
  8765. </tr>
  8766. </tbody>
  8767. </table>
  8768. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  8769. </h3>
  8770. <p>
  8771. (<em>Appears on:</em>
  8772. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8773. </p>
  8774. <p>
  8775. <p>OracleAuth defines the authentication method for the Oracle Vault provider.</p>
  8776. </p>
  8777. <table>
  8778. <thead>
  8779. <tr>
  8780. <th>Field</th>
  8781. <th>Description</th>
  8782. </tr>
  8783. </thead>
  8784. <tbody>
  8785. <tr>
  8786. <td>
  8787. <code>tenancy</code></br>
  8788. <em>
  8789. string
  8790. </em>
  8791. </td>
  8792. <td>
  8793. <p>Tenancy is the tenancy OCID where user is located.</p>
  8794. </td>
  8795. </tr>
  8796. <tr>
  8797. <td>
  8798. <code>user</code></br>
  8799. <em>
  8800. string
  8801. </em>
  8802. </td>
  8803. <td>
  8804. <p>User is an access OCID specific to the account.</p>
  8805. </td>
  8806. </tr>
  8807. <tr>
  8808. <td>
  8809. <code>secretRef</code></br>
  8810. <em>
  8811. <a href="#external-secrets.io/v1.OracleSecretRef">
  8812. OracleSecretRef
  8813. </a>
  8814. </em>
  8815. </td>
  8816. <td>
  8817. <p>SecretRef to pass through sensitive information.</p>
  8818. </td>
  8819. </tr>
  8820. </tbody>
  8821. </table>
  8822. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  8823. (<code>string</code> alias)</p></h3>
  8824. <p>
  8825. (<em>Appears on:</em>
  8826. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8827. </p>
  8828. <p>
  8829. <p>OraclePrincipalType defines the type of principal used for authentication with Oracle Vault.</p>
  8830. </p>
  8831. <table>
  8832. <thead>
  8833. <tr>
  8834. <th>Value</th>
  8835. <th>Description</th>
  8836. </tr>
  8837. </thead>
  8838. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  8839. <td><p>InstancePrincipal represents a instance principal.</p>
  8840. </td>
  8841. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  8842. <td><p>UserPrincipal represents a user principal.</p>
  8843. </td>
  8844. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  8845. <td><p>WorkloadPrincipal represents a workload principal.</p>
  8846. </td>
  8847. </tr></tbody>
  8848. </table>
  8849. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  8850. </h3>
  8851. <p>
  8852. (<em>Appears on:</em>
  8853. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8854. </p>
  8855. <p>
  8856. <p>OracleProvider configures a store to sync secrets using an Oracle Vault
  8857. backend.</p>
  8858. </p>
  8859. <table>
  8860. <thead>
  8861. <tr>
  8862. <th>Field</th>
  8863. <th>Description</th>
  8864. </tr>
  8865. </thead>
  8866. <tbody>
  8867. <tr>
  8868. <td>
  8869. <code>region</code></br>
  8870. <em>
  8871. string
  8872. </em>
  8873. </td>
  8874. <td>
  8875. <p>Region is the region where vault is located.</p>
  8876. </td>
  8877. </tr>
  8878. <tr>
  8879. <td>
  8880. <code>vault</code></br>
  8881. <em>
  8882. string
  8883. </em>
  8884. </td>
  8885. <td>
  8886. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  8887. </td>
  8888. </tr>
  8889. <tr>
  8890. <td>
  8891. <code>compartment</code></br>
  8892. <em>
  8893. string
  8894. </em>
  8895. </td>
  8896. <td>
  8897. <em>(Optional)</em>
  8898. <p>Compartment is the vault compartment OCID.
  8899. Required for PushSecret</p>
  8900. </td>
  8901. </tr>
  8902. <tr>
  8903. <td>
  8904. <code>encryptionKey</code></br>
  8905. <em>
  8906. string
  8907. </em>
  8908. </td>
  8909. <td>
  8910. <em>(Optional)</em>
  8911. <p>EncryptionKey is the OCID of the encryption key within the vault.
  8912. Required for PushSecret</p>
  8913. </td>
  8914. </tr>
  8915. <tr>
  8916. <td>
  8917. <code>principalType</code></br>
  8918. <em>
  8919. <a href="#external-secrets.io/v1.OraclePrincipalType">
  8920. OraclePrincipalType
  8921. </a>
  8922. </em>
  8923. </td>
  8924. <td>
  8925. <em>(Optional)</em>
  8926. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  8927. determine the principal type. This optional field must be specified if using
  8928. workload identity.</p>
  8929. </td>
  8930. </tr>
  8931. <tr>
  8932. <td>
  8933. <code>auth</code></br>
  8934. <em>
  8935. <a href="#external-secrets.io/v1.OracleAuth">
  8936. OracleAuth
  8937. </a>
  8938. </em>
  8939. </td>
  8940. <td>
  8941. <em>(Optional)</em>
  8942. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  8943. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  8944. </td>
  8945. </tr>
  8946. <tr>
  8947. <td>
  8948. <code>serviceAccountRef</code></br>
  8949. <em>
  8950. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8951. External Secrets meta/v1.ServiceAccountSelector
  8952. </a>
  8953. </em>
  8954. </td>
  8955. <td>
  8956. <em>(Optional)</em>
  8957. <p>ServiceAccountRef specified the service account
  8958. that should be used when authenticating with WorkloadIdentity.</p>
  8959. </td>
  8960. </tr>
  8961. </tbody>
  8962. </table>
  8963. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  8964. </h3>
  8965. <p>
  8966. (<em>Appears on:</em>
  8967. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  8968. </p>
  8969. <p>
  8970. <p>OracleSecretRef contains the secret reference for Oracle Vault authentication credentials.</p>
  8971. </p>
  8972. <table>
  8973. <thead>
  8974. <tr>
  8975. <th>Field</th>
  8976. <th>Description</th>
  8977. </tr>
  8978. </thead>
  8979. <tbody>
  8980. <tr>
  8981. <td>
  8982. <code>privatekey</code></br>
  8983. <em>
  8984. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8985. External Secrets meta/v1.SecretKeySelector
  8986. </a>
  8987. </em>
  8988. </td>
  8989. <td>
  8990. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  8991. </td>
  8992. </tr>
  8993. <tr>
  8994. <td>
  8995. <code>fingerprint</code></br>
  8996. <em>
  8997. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8998. External Secrets meta/v1.SecretKeySelector
  8999. </a>
  9000. </em>
  9001. </td>
  9002. <td>
  9003. <p>Fingerprint is the fingerprint of the API private key.</p>
  9004. </td>
  9005. </tr>
  9006. </tbody>
  9007. </table>
  9008. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  9009. </h3>
  9010. <p>
  9011. (<em>Appears on:</em>
  9012. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  9013. </p>
  9014. <p>
  9015. <p>PassboltAuth contains a secretRef for the passbolt credentials.</p>
  9016. </p>
  9017. <table>
  9018. <thead>
  9019. <tr>
  9020. <th>Field</th>
  9021. <th>Description</th>
  9022. </tr>
  9023. </thead>
  9024. <tbody>
  9025. <tr>
  9026. <td>
  9027. <code>passwordSecretRef</code></br>
  9028. <em>
  9029. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9030. External Secrets meta/v1.SecretKeySelector
  9031. </a>
  9032. </em>
  9033. </td>
  9034. <td>
  9035. </td>
  9036. </tr>
  9037. <tr>
  9038. <td>
  9039. <code>privateKeySecretRef</code></br>
  9040. <em>
  9041. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9042. External Secrets meta/v1.SecretKeySelector
  9043. </a>
  9044. </em>
  9045. </td>
  9046. <td>
  9047. </td>
  9048. </tr>
  9049. </tbody>
  9050. </table>
  9051. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  9052. </h3>
  9053. <p>
  9054. (<em>Appears on:</em>
  9055. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9056. </p>
  9057. <p>
  9058. <p>PassboltProvider provides access to Passbolt secrets manager.
  9059. See: <a href="https://www.passbolt.com">https://www.passbolt.com</a>.</p>
  9060. </p>
  9061. <table>
  9062. <thead>
  9063. <tr>
  9064. <th>Field</th>
  9065. <th>Description</th>
  9066. </tr>
  9067. </thead>
  9068. <tbody>
  9069. <tr>
  9070. <td>
  9071. <code>auth</code></br>
  9072. <em>
  9073. <a href="#external-secrets.io/v1.PassboltAuth">
  9074. PassboltAuth
  9075. </a>
  9076. </em>
  9077. </td>
  9078. <td>
  9079. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  9080. </td>
  9081. </tr>
  9082. <tr>
  9083. <td>
  9084. <code>host</code></br>
  9085. <em>
  9086. string
  9087. </em>
  9088. </td>
  9089. <td>
  9090. <p>Host defines the Passbolt Server to connect to</p>
  9091. </td>
  9092. </tr>
  9093. </tbody>
  9094. </table>
  9095. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  9096. </h3>
  9097. <p>
  9098. (<em>Appears on:</em>
  9099. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  9100. </p>
  9101. <p>
  9102. <p>PasswordDepotAuth defines the authentication method for the Password Depot provider.</p>
  9103. </p>
  9104. <table>
  9105. <thead>
  9106. <tr>
  9107. <th>Field</th>
  9108. <th>Description</th>
  9109. </tr>
  9110. </thead>
  9111. <tbody>
  9112. <tr>
  9113. <td>
  9114. <code>secretRef</code></br>
  9115. <em>
  9116. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  9117. PasswordDepotSecretRef
  9118. </a>
  9119. </em>
  9120. </td>
  9121. <td>
  9122. </td>
  9123. </tr>
  9124. </tbody>
  9125. </table>
  9126. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  9127. </h3>
  9128. <p>
  9129. (<em>Appears on:</em>
  9130. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9131. </p>
  9132. <p>
  9133. <p>PasswordDepotProvider configures a store to sync secrets with a Password Depot instance.</p>
  9134. </p>
  9135. <table>
  9136. <thead>
  9137. <tr>
  9138. <th>Field</th>
  9139. <th>Description</th>
  9140. </tr>
  9141. </thead>
  9142. <tbody>
  9143. <tr>
  9144. <td>
  9145. <code>host</code></br>
  9146. <em>
  9147. string
  9148. </em>
  9149. </td>
  9150. <td>
  9151. <p>URL configures the Password Depot instance URL.</p>
  9152. </td>
  9153. </tr>
  9154. <tr>
  9155. <td>
  9156. <code>database</code></br>
  9157. <em>
  9158. string
  9159. </em>
  9160. </td>
  9161. <td>
  9162. <p>Database to use as source</p>
  9163. </td>
  9164. </tr>
  9165. <tr>
  9166. <td>
  9167. <code>auth</code></br>
  9168. <em>
  9169. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  9170. PasswordDepotAuth
  9171. </a>
  9172. </em>
  9173. </td>
  9174. <td>
  9175. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  9176. </td>
  9177. </tr>
  9178. </tbody>
  9179. </table>
  9180. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  9181. </h3>
  9182. <p>
  9183. (<em>Appears on:</em>
  9184. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  9185. </p>
  9186. <p>
  9187. <p>PasswordDepotSecretRef contains the secret reference for Password Depot authentication.</p>
  9188. </p>
  9189. <table>
  9190. <thead>
  9191. <tr>
  9192. <th>Field</th>
  9193. <th>Description</th>
  9194. </tr>
  9195. </thead>
  9196. <tbody>
  9197. <tr>
  9198. <td>
  9199. <code>credentials</code></br>
  9200. <em>
  9201. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9202. External Secrets meta/v1.SecretKeySelector
  9203. </a>
  9204. </em>
  9205. </td>
  9206. <td>
  9207. <em>(Optional)</em>
  9208. <p>Username / Password is used for authentication.</p>
  9209. </td>
  9210. </tr>
  9211. </tbody>
  9212. </table>
  9213. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  9214. </h3>
  9215. <p>
  9216. (<em>Appears on:</em>
  9217. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  9218. </p>
  9219. <p>
  9220. <p>PreviderAuth contains a secretRef for credentials.</p>
  9221. </p>
  9222. <table>
  9223. <thead>
  9224. <tr>
  9225. <th>Field</th>
  9226. <th>Description</th>
  9227. </tr>
  9228. </thead>
  9229. <tbody>
  9230. <tr>
  9231. <td>
  9232. <code>secretRef</code></br>
  9233. <em>
  9234. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  9235. PreviderAuthSecretRef
  9236. </a>
  9237. </em>
  9238. </td>
  9239. <td>
  9240. <em>(Optional)</em>
  9241. </td>
  9242. </tr>
  9243. </tbody>
  9244. </table>
  9245. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  9246. </h3>
  9247. <p>
  9248. (<em>Appears on:</em>
  9249. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  9250. </p>
  9251. <p>
  9252. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  9253. </p>
  9254. <table>
  9255. <thead>
  9256. <tr>
  9257. <th>Field</th>
  9258. <th>Description</th>
  9259. </tr>
  9260. </thead>
  9261. <tbody>
  9262. <tr>
  9263. <td>
  9264. <code>accessToken</code></br>
  9265. <em>
  9266. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9267. External Secrets meta/v1.SecretKeySelector
  9268. </a>
  9269. </em>
  9270. </td>
  9271. <td>
  9272. <p>The AccessToken is used for authentication</p>
  9273. </td>
  9274. </tr>
  9275. </tbody>
  9276. </table>
  9277. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  9278. </h3>
  9279. <p>
  9280. (<em>Appears on:</em>
  9281. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9282. </p>
  9283. <p>
  9284. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  9285. </p>
  9286. <table>
  9287. <thead>
  9288. <tr>
  9289. <th>Field</th>
  9290. <th>Description</th>
  9291. </tr>
  9292. </thead>
  9293. <tbody>
  9294. <tr>
  9295. <td>
  9296. <code>auth</code></br>
  9297. <em>
  9298. <a href="#external-secrets.io/v1.PreviderAuth">
  9299. PreviderAuth
  9300. </a>
  9301. </em>
  9302. </td>
  9303. <td>
  9304. </td>
  9305. </tr>
  9306. <tr>
  9307. <td>
  9308. <code>baseUri</code></br>
  9309. <em>
  9310. string
  9311. </em>
  9312. </td>
  9313. <td>
  9314. <em>(Optional)</em>
  9315. </td>
  9316. </tr>
  9317. </tbody>
  9318. </table>
  9319. <h3 id="external-secrets.io/v1.Provider">Provider
  9320. </h3>
  9321. <p>
  9322. <p>Provider is a common interface for interacting with secret backends.</p>
  9323. </p>
  9324. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  9325. </h3>
  9326. <p>
  9327. (<em>Appears on:</em>
  9328. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9329. </p>
  9330. <p>
  9331. <p>PulumiProvider defines configuration for accessing secrets from Pulumi ESC.</p>
  9332. </p>
  9333. <table>
  9334. <thead>
  9335. <tr>
  9336. <th>Field</th>
  9337. <th>Description</th>
  9338. </tr>
  9339. </thead>
  9340. <tbody>
  9341. <tr>
  9342. <td>
  9343. <code>apiUrl</code></br>
  9344. <em>
  9345. string
  9346. </em>
  9347. </td>
  9348. <td>
  9349. <p>APIURL is the URL of the Pulumi API.</p>
  9350. </td>
  9351. </tr>
  9352. <tr>
  9353. <td>
  9354. <code>accessToken</code></br>
  9355. <em>
  9356. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  9357. PulumiProviderSecretRef
  9358. </a>
  9359. </em>
  9360. </td>
  9361. <td>
  9362. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  9363. </td>
  9364. </tr>
  9365. <tr>
  9366. <td>
  9367. <code>organization</code></br>
  9368. <em>
  9369. string
  9370. </em>
  9371. </td>
  9372. <td>
  9373. <p>Organization are a space to collaborate on shared projects and stacks.
  9374. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  9375. </td>
  9376. </tr>
  9377. <tr>
  9378. <td>
  9379. <code>project</code></br>
  9380. <em>
  9381. string
  9382. </em>
  9383. </td>
  9384. <td>
  9385. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  9386. </td>
  9387. </tr>
  9388. <tr>
  9389. <td>
  9390. <code>environment</code></br>
  9391. <em>
  9392. string
  9393. </em>
  9394. </td>
  9395. <td>
  9396. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  9397. dynamically retrieved values from supported providers including all major clouds,
  9398. and other Pulumi ESC environments.
  9399. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  9400. </td>
  9401. </tr>
  9402. </tbody>
  9403. </table>
  9404. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  9405. </h3>
  9406. <p>
  9407. (<em>Appears on:</em>
  9408. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  9409. </p>
  9410. <p>
  9411. <p>PulumiProviderSecretRef contains the secret reference for Pulumi authentication.</p>
  9412. </p>
  9413. <table>
  9414. <thead>
  9415. <tr>
  9416. <th>Field</th>
  9417. <th>Description</th>
  9418. </tr>
  9419. </thead>
  9420. <tbody>
  9421. <tr>
  9422. <td>
  9423. <code>secretRef</code></br>
  9424. <em>
  9425. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9426. External Secrets meta/v1.SecretKeySelector
  9427. </a>
  9428. </em>
  9429. </td>
  9430. <td>
  9431. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  9432. </td>
  9433. </tr>
  9434. </tbody>
  9435. </table>
  9436. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  9437. </h3>
  9438. <p>
  9439. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  9440. </p>
  9441. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  9442. </h3>
  9443. <p>
  9444. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  9445. </p>
  9446. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  9447. </h3>
  9448. <p>
  9449. (<em>Appears on:</em>
  9450. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9451. </p>
  9452. <p>
  9453. <p>ScalewayProvider defines the configuration for the Scaleway Secret Manager provider.</p>
  9454. </p>
  9455. <table>
  9456. <thead>
  9457. <tr>
  9458. <th>Field</th>
  9459. <th>Description</th>
  9460. </tr>
  9461. </thead>
  9462. <tbody>
  9463. <tr>
  9464. <td>
  9465. <code>apiUrl</code></br>
  9466. <em>
  9467. string
  9468. </em>
  9469. </td>
  9470. <td>
  9471. <em>(Optional)</em>
  9472. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  9473. </td>
  9474. </tr>
  9475. <tr>
  9476. <td>
  9477. <code>region</code></br>
  9478. <em>
  9479. string
  9480. </em>
  9481. </td>
  9482. <td>
  9483. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  9484. </td>
  9485. </tr>
  9486. <tr>
  9487. <td>
  9488. <code>projectId</code></br>
  9489. <em>
  9490. string
  9491. </em>
  9492. </td>
  9493. <td>
  9494. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  9495. </td>
  9496. </tr>
  9497. <tr>
  9498. <td>
  9499. <code>accessKey</code></br>
  9500. <em>
  9501. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9502. ScalewayProviderSecretRef
  9503. </a>
  9504. </em>
  9505. </td>
  9506. <td>
  9507. <p>AccessKey is the non-secret part of the api key.</p>
  9508. </td>
  9509. </tr>
  9510. <tr>
  9511. <td>
  9512. <code>secretKey</code></br>
  9513. <em>
  9514. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9515. ScalewayProviderSecretRef
  9516. </a>
  9517. </em>
  9518. </td>
  9519. <td>
  9520. <p>SecretKey is the non-secret part of the api key.</p>
  9521. </td>
  9522. </tr>
  9523. </tbody>
  9524. </table>
  9525. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  9526. </h3>
  9527. <p>
  9528. (<em>Appears on:</em>
  9529. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  9530. </p>
  9531. <p>
  9532. <p>ScalewayProviderSecretRef defines the configuration for Scaleway secret references.</p>
  9533. </p>
  9534. <table>
  9535. <thead>
  9536. <tr>
  9537. <th>Field</th>
  9538. <th>Description</th>
  9539. </tr>
  9540. </thead>
  9541. <tbody>
  9542. <tr>
  9543. <td>
  9544. <code>value</code></br>
  9545. <em>
  9546. string
  9547. </em>
  9548. </td>
  9549. <td>
  9550. <em>(Optional)</em>
  9551. <p>Value can be specified directly to set a value without using a secret.</p>
  9552. </td>
  9553. </tr>
  9554. <tr>
  9555. <td>
  9556. <code>secretRef</code></br>
  9557. <em>
  9558. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9559. External Secrets meta/v1.SecretKeySelector
  9560. </a>
  9561. </em>
  9562. </td>
  9563. <td>
  9564. <em>(Optional)</em>
  9565. <p>SecretRef references a key in a secret that will be used as value.</p>
  9566. </td>
  9567. </tr>
  9568. </tbody>
  9569. </table>
  9570. <h3 id="external-secrets.io/v1.SecretReference">SecretReference
  9571. </h3>
  9572. <p>
  9573. (<em>Appears on:</em>
  9574. <a href="#external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig</a>)
  9575. </p>
  9576. <p>
  9577. <p>SecretReference holds the details of a secret.</p>
  9578. </p>
  9579. <table>
  9580. <thead>
  9581. <tr>
  9582. <th>Field</th>
  9583. <th>Description</th>
  9584. </tr>
  9585. </thead>
  9586. <tbody>
  9587. <tr>
  9588. <td>
  9589. <code>name</code></br>
  9590. <em>
  9591. string
  9592. </em>
  9593. </td>
  9594. <td>
  9595. <p>name of the secret.</p>
  9596. </td>
  9597. </tr>
  9598. <tr>
  9599. <td>
  9600. <code>namespace</code></br>
  9601. <em>
  9602. string
  9603. </em>
  9604. </td>
  9605. <td>
  9606. <p>namespace in which the secret exists. If empty, secret will looked up in local namespace.</p>
  9607. </td>
  9608. </tr>
  9609. </tbody>
  9610. </table>
  9611. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  9612. </h3>
  9613. <p>
  9614. (<em>Appears on:</em>
  9615. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9616. </p>
  9617. <p>
  9618. <p>SecretServerProvider provides access to authenticate to a secrets provider server.
  9619. See: <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  9620. </p>
  9621. <table>
  9622. <thead>
  9623. <tr>
  9624. <th>Field</th>
  9625. <th>Description</th>
  9626. </tr>
  9627. </thead>
  9628. <tbody>
  9629. <tr>
  9630. <td>
  9631. <code>username</code></br>
  9632. <em>
  9633. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9634. SecretServerProviderRef
  9635. </a>
  9636. </em>
  9637. </td>
  9638. <td>
  9639. <p>Username is the secret server account username.</p>
  9640. </td>
  9641. </tr>
  9642. <tr>
  9643. <td>
  9644. <code>password</code></br>
  9645. <em>
  9646. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9647. SecretServerProviderRef
  9648. </a>
  9649. </em>
  9650. </td>
  9651. <td>
  9652. <p>Password is the secret server account password.</p>
  9653. </td>
  9654. </tr>
  9655. <tr>
  9656. <td>
  9657. <code>domain</code></br>
  9658. <em>
  9659. string
  9660. </em>
  9661. </td>
  9662. <td>
  9663. <em>(Optional)</em>
  9664. <p>Domain is the secret server domain.</p>
  9665. </td>
  9666. </tr>
  9667. <tr>
  9668. <td>
  9669. <code>serverURL</code></br>
  9670. <em>
  9671. string
  9672. </em>
  9673. </td>
  9674. <td>
  9675. <p>ServerURL
  9676. URL to your secret server installation</p>
  9677. </td>
  9678. </tr>
  9679. </tbody>
  9680. </table>
  9681. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  9682. </h3>
  9683. <p>
  9684. (<em>Appears on:</em>
  9685. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  9686. </p>
  9687. <p>
  9688. <p>SecretServerProviderRef references a value that can be specified directly or via a secret
  9689. for a SecretServerProvider.</p>
  9690. </p>
  9691. <table>
  9692. <thead>
  9693. <tr>
  9694. <th>Field</th>
  9695. <th>Description</th>
  9696. </tr>
  9697. </thead>
  9698. <tbody>
  9699. <tr>
  9700. <td>
  9701. <code>value</code></br>
  9702. <em>
  9703. string
  9704. </em>
  9705. </td>
  9706. <td>
  9707. <em>(Optional)</em>
  9708. <p>Value can be specified directly to set a value without using a secret.</p>
  9709. </td>
  9710. </tr>
  9711. <tr>
  9712. <td>
  9713. <code>secretRef</code></br>
  9714. <em>
  9715. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9716. External Secrets meta/v1.SecretKeySelector
  9717. </a>
  9718. </em>
  9719. </td>
  9720. <td>
  9721. <em>(Optional)</em>
  9722. <p>SecretRef references a key in a secret that will be used as value.</p>
  9723. </td>
  9724. </tr>
  9725. </tbody>
  9726. </table>
  9727. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  9728. </h3>
  9729. <p>
  9730. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  9731. </p>
  9732. <table>
  9733. <thead>
  9734. <tr>
  9735. <th>Field</th>
  9736. <th>Description</th>
  9737. </tr>
  9738. </thead>
  9739. <tbody>
  9740. <tr>
  9741. <td>
  9742. <code>metadata</code></br>
  9743. <em>
  9744. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  9745. Kubernetes meta/v1.ObjectMeta
  9746. </a>
  9747. </em>
  9748. </td>
  9749. <td>
  9750. Refer to the Kubernetes API documentation for the fields of the
  9751. <code>metadata</code> field.
  9752. </td>
  9753. </tr>
  9754. <tr>
  9755. <td>
  9756. <code>spec</code></br>
  9757. <em>
  9758. <a href="#external-secrets.io/v1.SecretStoreSpec">
  9759. SecretStoreSpec
  9760. </a>
  9761. </em>
  9762. </td>
  9763. <td>
  9764. <br/>
  9765. <br/>
  9766. <table>
  9767. <tr>
  9768. <td>
  9769. <code>controller</code></br>
  9770. <em>
  9771. string
  9772. </em>
  9773. </td>
  9774. <td>
  9775. <em>(Optional)</em>
  9776. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9777. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9778. </td>
  9779. </tr>
  9780. <tr>
  9781. <td>
  9782. <code>provider</code></br>
  9783. <em>
  9784. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9785. SecretStoreProvider
  9786. </a>
  9787. </em>
  9788. </td>
  9789. <td>
  9790. <p>Used to configure the provider. Only one provider may be set</p>
  9791. </td>
  9792. </tr>
  9793. <tr>
  9794. <td>
  9795. <code>retrySettings</code></br>
  9796. <em>
  9797. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9798. SecretStoreRetrySettings
  9799. </a>
  9800. </em>
  9801. </td>
  9802. <td>
  9803. <em>(Optional)</em>
  9804. <p>Used to configure http retries if failed</p>
  9805. </td>
  9806. </tr>
  9807. <tr>
  9808. <td>
  9809. <code>refreshInterval</code></br>
  9810. <em>
  9811. int
  9812. </em>
  9813. </td>
  9814. <td>
  9815. <em>(Optional)</em>
  9816. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9817. </td>
  9818. </tr>
  9819. <tr>
  9820. <td>
  9821. <code>conditions</code></br>
  9822. <em>
  9823. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9824. []ClusterSecretStoreCondition
  9825. </a>
  9826. </em>
  9827. </td>
  9828. <td>
  9829. <em>(Optional)</em>
  9830. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9831. </td>
  9832. </tr>
  9833. </table>
  9834. </td>
  9835. </tr>
  9836. <tr>
  9837. <td>
  9838. <code>status</code></br>
  9839. <em>
  9840. <a href="#external-secrets.io/v1.SecretStoreStatus">
  9841. SecretStoreStatus
  9842. </a>
  9843. </em>
  9844. </td>
  9845. <td>
  9846. </td>
  9847. </tr>
  9848. </tbody>
  9849. </table>
  9850. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  9851. (<code>string</code> alias)</p></h3>
  9852. <p>
  9853. (<em>Appears on:</em>
  9854. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9855. </p>
  9856. <p>
  9857. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  9858. </p>
  9859. <table>
  9860. <thead>
  9861. <tr>
  9862. <th>Value</th>
  9863. <th>Description</th>
  9864. </tr>
  9865. </thead>
  9866. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  9867. <td><p>SecretStoreReadOnly indicates that the store can only read secrets.</p>
  9868. </td>
  9869. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  9870. <td><p>SecretStoreReadWrite indicates that the store can both read and write secrets.</p>
  9871. </td>
  9872. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  9873. <td><p>SecretStoreWriteOnly indicates that the store can only write secrets.</p>
  9874. </td>
  9875. </tr></tbody>
  9876. </table>
  9877. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  9878. (<code>string</code> alias)</p></h3>
  9879. <p>
  9880. (<em>Appears on:</em>
  9881. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  9882. </p>
  9883. <p>
  9884. <p>SecretStoreConditionType represents the condition of the SecretStore.</p>
  9885. </p>
  9886. <table>
  9887. <thead>
  9888. <tr>
  9889. <th>Value</th>
  9890. <th>Description</th>
  9891. </tr>
  9892. </thead>
  9893. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  9894. <td><p>SecretStoreReady indicates that the store is ready and able to serve requests.</p>
  9895. </td>
  9896. </tr></tbody>
  9897. </table>
  9898. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  9899. </h3>
  9900. <p>
  9901. (<em>Appears on:</em>
  9902. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9903. </p>
  9904. <p>
  9905. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  9906. </p>
  9907. <table>
  9908. <thead>
  9909. <tr>
  9910. <th>Field</th>
  9911. <th>Description</th>
  9912. </tr>
  9913. </thead>
  9914. <tbody>
  9915. <tr>
  9916. <td>
  9917. <code>aws</code></br>
  9918. <em>
  9919. <a href="#external-secrets.io/v1.AWSProvider">
  9920. AWSProvider
  9921. </a>
  9922. </em>
  9923. </td>
  9924. <td>
  9925. <em>(Optional)</em>
  9926. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  9927. </td>
  9928. </tr>
  9929. <tr>
  9930. <td>
  9931. <code>azurekv</code></br>
  9932. <em>
  9933. <a href="#external-secrets.io/v1.AzureKVProvider">
  9934. AzureKVProvider
  9935. </a>
  9936. </em>
  9937. </td>
  9938. <td>
  9939. <em>(Optional)</em>
  9940. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  9941. </td>
  9942. </tr>
  9943. <tr>
  9944. <td>
  9945. <code>akeyless</code></br>
  9946. <em>
  9947. <a href="#external-secrets.io/v1.AkeylessProvider">
  9948. AkeylessProvider
  9949. </a>
  9950. </em>
  9951. </td>
  9952. <td>
  9953. <em>(Optional)</em>
  9954. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  9955. </td>
  9956. </tr>
  9957. <tr>
  9958. <td>
  9959. <code>bitwardensecretsmanager</code></br>
  9960. <em>
  9961. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  9962. BitwardenSecretsManagerProvider
  9963. </a>
  9964. </em>
  9965. </td>
  9966. <td>
  9967. <em>(Optional)</em>
  9968. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  9969. </td>
  9970. </tr>
  9971. <tr>
  9972. <td>
  9973. <code>vault</code></br>
  9974. <em>
  9975. <a href="#external-secrets.io/v1.VaultProvider">
  9976. VaultProvider
  9977. </a>
  9978. </em>
  9979. </td>
  9980. <td>
  9981. <em>(Optional)</em>
  9982. <p>Vault configures this store to sync secrets using Hashi provider</p>
  9983. </td>
  9984. </tr>
  9985. <tr>
  9986. <td>
  9987. <code>gcpsm</code></br>
  9988. <em>
  9989. <a href="#external-secrets.io/v1.GCPSMProvider">
  9990. GCPSMProvider
  9991. </a>
  9992. </em>
  9993. </td>
  9994. <td>
  9995. <em>(Optional)</em>
  9996. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  9997. </td>
  9998. </tr>
  9999. <tr>
  10000. <td>
  10001. <code>oracle</code></br>
  10002. <em>
  10003. <a href="#external-secrets.io/v1.OracleProvider">
  10004. OracleProvider
  10005. </a>
  10006. </em>
  10007. </td>
  10008. <td>
  10009. <em>(Optional)</em>
  10010. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  10011. </td>
  10012. </tr>
  10013. <tr>
  10014. <td>
  10015. <code>ibm</code></br>
  10016. <em>
  10017. <a href="#external-secrets.io/v1.IBMProvider">
  10018. IBMProvider
  10019. </a>
  10020. </em>
  10021. </td>
  10022. <td>
  10023. <em>(Optional)</em>
  10024. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  10025. </td>
  10026. </tr>
  10027. <tr>
  10028. <td>
  10029. <code>yandexcertificatemanager</code></br>
  10030. <em>
  10031. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  10032. YandexCertificateManagerProvider
  10033. </a>
  10034. </em>
  10035. </td>
  10036. <td>
  10037. <em>(Optional)</em>
  10038. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  10039. </td>
  10040. </tr>
  10041. <tr>
  10042. <td>
  10043. <code>yandexlockbox</code></br>
  10044. <em>
  10045. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  10046. YandexLockboxProvider
  10047. </a>
  10048. </em>
  10049. </td>
  10050. <td>
  10051. <em>(Optional)</em>
  10052. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  10053. </td>
  10054. </tr>
  10055. <tr>
  10056. <td>
  10057. <code>github</code></br>
  10058. <em>
  10059. <a href="#external-secrets.io/v1.GithubProvider">
  10060. GithubProvider
  10061. </a>
  10062. </em>
  10063. </td>
  10064. <td>
  10065. <em>(Optional)</em>
  10066. <p>Github configures this store to push GitHub Action secrets using GitHub API provider.
  10067. Note: This provider only supports write operations (PushSecret) and cannot fetch secrets from GitHub</p>
  10068. </td>
  10069. </tr>
  10070. <tr>
  10071. <td>
  10072. <code>gitlab</code></br>
  10073. <em>
  10074. <a href="#external-secrets.io/v1.GitlabProvider">
  10075. GitlabProvider
  10076. </a>
  10077. </em>
  10078. </td>
  10079. <td>
  10080. <em>(Optional)</em>
  10081. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  10082. </td>
  10083. </tr>
  10084. <tr>
  10085. <td>
  10086. <code>alibaba</code></br>
  10087. <em>
  10088. <a href="#external-secrets.io/v1.AlibabaProvider">
  10089. AlibabaProvider
  10090. </a>
  10091. </em>
  10092. </td>
  10093. <td>
  10094. <em>(Optional)</em>
  10095. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  10096. </td>
  10097. </tr>
  10098. <tr>
  10099. <td>
  10100. <code>onepassword</code></br>
  10101. <em>
  10102. <a href="#external-secrets.io/v1.OnePasswordProvider">
  10103. OnePasswordProvider
  10104. </a>
  10105. </em>
  10106. </td>
  10107. <td>
  10108. <em>(Optional)</em>
  10109. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  10110. </td>
  10111. </tr>
  10112. <tr>
  10113. <td>
  10114. <code>onepasswordSDK</code></br>
  10115. <em>
  10116. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  10117. OnePasswordSDKProvider
  10118. </a>
  10119. </em>
  10120. </td>
  10121. <td>
  10122. <em>(Optional)</em>
  10123. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  10124. </td>
  10125. </tr>
  10126. <tr>
  10127. <td>
  10128. <code>webhook</code></br>
  10129. <em>
  10130. <a href="#external-secrets.io/v1.WebhookProvider">
  10131. WebhookProvider
  10132. </a>
  10133. </em>
  10134. </td>
  10135. <td>
  10136. <em>(Optional)</em>
  10137. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  10138. </td>
  10139. </tr>
  10140. <tr>
  10141. <td>
  10142. <code>kubernetes</code></br>
  10143. <em>
  10144. <a href="#external-secrets.io/v1.KubernetesProvider">
  10145. KubernetesProvider
  10146. </a>
  10147. </em>
  10148. </td>
  10149. <td>
  10150. <em>(Optional)</em>
  10151. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  10152. </td>
  10153. </tr>
  10154. <tr>
  10155. <td>
  10156. <code>fake</code></br>
  10157. <em>
  10158. <a href="#external-secrets.io/v1.FakeProvider">
  10159. FakeProvider
  10160. </a>
  10161. </em>
  10162. </td>
  10163. <td>
  10164. <em>(Optional)</em>
  10165. <p>Fake configures a store with static key/value pairs</p>
  10166. </td>
  10167. </tr>
  10168. <tr>
  10169. <td>
  10170. <code>senhasegura</code></br>
  10171. <em>
  10172. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  10173. SenhaseguraProvider
  10174. </a>
  10175. </em>
  10176. </td>
  10177. <td>
  10178. <em>(Optional)</em>
  10179. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  10180. </td>
  10181. </tr>
  10182. <tr>
  10183. <td>
  10184. <code>scaleway</code></br>
  10185. <em>
  10186. <a href="#external-secrets.io/v1.ScalewayProvider">
  10187. ScalewayProvider
  10188. </a>
  10189. </em>
  10190. </td>
  10191. <td>
  10192. <em>(Optional)</em>
  10193. <p>Scaleway</p>
  10194. </td>
  10195. </tr>
  10196. <tr>
  10197. <td>
  10198. <code>doppler</code></br>
  10199. <em>
  10200. <a href="#external-secrets.io/v1.DopplerProvider">
  10201. DopplerProvider
  10202. </a>
  10203. </em>
  10204. </td>
  10205. <td>
  10206. <em>(Optional)</em>
  10207. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  10208. </td>
  10209. </tr>
  10210. <tr>
  10211. <td>
  10212. <code>previder</code></br>
  10213. <em>
  10214. <a href="#external-secrets.io/v1.PreviderProvider">
  10215. PreviderProvider
  10216. </a>
  10217. </em>
  10218. </td>
  10219. <td>
  10220. <em>(Optional)</em>
  10221. <p>Previder configures this store to sync secrets using the Previder provider</p>
  10222. </td>
  10223. </tr>
  10224. <tr>
  10225. <td>
  10226. <code>onboardbase</code></br>
  10227. <em>
  10228. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  10229. OnboardbaseProvider
  10230. </a>
  10231. </em>
  10232. </td>
  10233. <td>
  10234. <em>(Optional)</em>
  10235. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  10236. </td>
  10237. </tr>
  10238. <tr>
  10239. <td>
  10240. <code>keepersecurity</code></br>
  10241. <em>
  10242. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  10243. KeeperSecurityProvider
  10244. </a>
  10245. </em>
  10246. </td>
  10247. <td>
  10248. <em>(Optional)</em>
  10249. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  10250. </td>
  10251. </tr>
  10252. <tr>
  10253. <td>
  10254. <code>conjur</code></br>
  10255. <em>
  10256. <a href="#external-secrets.io/v1.ConjurProvider">
  10257. ConjurProvider
  10258. </a>
  10259. </em>
  10260. </td>
  10261. <td>
  10262. <em>(Optional)</em>
  10263. <p>Conjur configures this store to sync secrets using conjur provider</p>
  10264. </td>
  10265. </tr>
  10266. <tr>
  10267. <td>
  10268. <code>delinea</code></br>
  10269. <em>
  10270. <a href="#external-secrets.io/v1.DelineaProvider">
  10271. DelineaProvider
  10272. </a>
  10273. </em>
  10274. </td>
  10275. <td>
  10276. <em>(Optional)</em>
  10277. <p>Delinea DevOps Secrets Vault
  10278. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  10279. </td>
  10280. </tr>
  10281. <tr>
  10282. <td>
  10283. <code>secretserver</code></br>
  10284. <em>
  10285. <a href="#external-secrets.io/v1.SecretServerProvider">
  10286. SecretServerProvider
  10287. </a>
  10288. </em>
  10289. </td>
  10290. <td>
  10291. <em>(Optional)</em>
  10292. <p>SecretServer configures this store to sync secrets using SecretServer provider
  10293. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  10294. </td>
  10295. </tr>
  10296. <tr>
  10297. <td>
  10298. <code>chef</code></br>
  10299. <em>
  10300. <a href="#external-secrets.io/v1.ChefProvider">
  10301. ChefProvider
  10302. </a>
  10303. </em>
  10304. </td>
  10305. <td>
  10306. <em>(Optional)</em>
  10307. <p>Chef configures this store to sync secrets with chef server</p>
  10308. </td>
  10309. </tr>
  10310. <tr>
  10311. <td>
  10312. <code>pulumi</code></br>
  10313. <em>
  10314. <a href="#external-secrets.io/v1.PulumiProvider">
  10315. PulumiProvider
  10316. </a>
  10317. </em>
  10318. </td>
  10319. <td>
  10320. <em>(Optional)</em>
  10321. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  10322. </td>
  10323. </tr>
  10324. <tr>
  10325. <td>
  10326. <code>fortanix</code></br>
  10327. <em>
  10328. <a href="#external-secrets.io/v1.FortanixProvider">
  10329. FortanixProvider
  10330. </a>
  10331. </em>
  10332. </td>
  10333. <td>
  10334. <em>(Optional)</em>
  10335. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  10336. </td>
  10337. </tr>
  10338. <tr>
  10339. <td>
  10340. <code>passworddepot</code></br>
  10341. <em>
  10342. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  10343. PasswordDepotProvider
  10344. </a>
  10345. </em>
  10346. </td>
  10347. <td>
  10348. <em>(Optional)</em>
  10349. </td>
  10350. </tr>
  10351. <tr>
  10352. <td>
  10353. <code>passbolt</code></br>
  10354. <em>
  10355. <a href="#external-secrets.io/v1.PassboltProvider">
  10356. PassboltProvider
  10357. </a>
  10358. </em>
  10359. </td>
  10360. <td>
  10361. <em>(Optional)</em>
  10362. </td>
  10363. </tr>
  10364. <tr>
  10365. <td>
  10366. <code>device42</code></br>
  10367. <em>
  10368. <a href="#external-secrets.io/v1.Device42Provider">
  10369. Device42Provider
  10370. </a>
  10371. </em>
  10372. </td>
  10373. <td>
  10374. <em>(Optional)</em>
  10375. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  10376. </td>
  10377. </tr>
  10378. <tr>
  10379. <td>
  10380. <code>infisical</code></br>
  10381. <em>
  10382. <a href="#external-secrets.io/v1.InfisicalProvider">
  10383. InfisicalProvider
  10384. </a>
  10385. </em>
  10386. </td>
  10387. <td>
  10388. <em>(Optional)</em>
  10389. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  10390. </td>
  10391. </tr>
  10392. <tr>
  10393. <td>
  10394. <code>beyondtrust</code></br>
  10395. <em>
  10396. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  10397. BeyondtrustProvider
  10398. </a>
  10399. </em>
  10400. </td>
  10401. <td>
  10402. <em>(Optional)</em>
  10403. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  10404. </td>
  10405. </tr>
  10406. <tr>
  10407. <td>
  10408. <code>cloudrusm</code></br>
  10409. <em>
  10410. <a href="#external-secrets.io/v1.CloudruSMProvider">
  10411. CloudruSMProvider
  10412. </a>
  10413. </em>
  10414. </td>
  10415. <td>
  10416. <em>(Optional)</em>
  10417. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  10418. </td>
  10419. </tr>
  10420. <tr>
  10421. <td>
  10422. <code>volcengine</code></br>
  10423. <em>
  10424. <a href="#external-secrets.io/v1.VolcengineProvider">
  10425. VolcengineProvider
  10426. </a>
  10427. </em>
  10428. </td>
  10429. <td>
  10430. <em>(Optional)</em>
  10431. <p>Volcengine configures this store to sync secrets using the Volcengine provider</p>
  10432. </td>
  10433. </tr>
  10434. <tr>
  10435. <td>
  10436. <code>ngrok</code></br>
  10437. <em>
  10438. <a href="#external-secrets.io/v1.NgrokProvider">
  10439. NgrokProvider
  10440. </a>
  10441. </em>
  10442. </td>
  10443. <td>
  10444. <em>(Optional)</em>
  10445. <p>Ngrok configures this store to sync secrets using the ngrok provider.</p>
  10446. </td>
  10447. </tr>
  10448. </tbody>
  10449. </table>
  10450. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  10451. </h3>
  10452. <p>
  10453. (<em>Appears on:</em>
  10454. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  10455. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  10456. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  10457. </p>
  10458. <p>
  10459. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  10460. </p>
  10461. <table>
  10462. <thead>
  10463. <tr>
  10464. <th>Field</th>
  10465. <th>Description</th>
  10466. </tr>
  10467. </thead>
  10468. <tbody>
  10469. <tr>
  10470. <td>
  10471. <code>name</code></br>
  10472. <em>
  10473. string
  10474. </em>
  10475. </td>
  10476. <td>
  10477. <p>Name of the SecretStore resource</p>
  10478. </td>
  10479. </tr>
  10480. <tr>
  10481. <td>
  10482. <code>kind</code></br>
  10483. <em>
  10484. string
  10485. </em>
  10486. </td>
  10487. <td>
  10488. <em>(Optional)</em>
  10489. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  10490. Defaults to <code>SecretStore</code></p>
  10491. </td>
  10492. </tr>
  10493. </tbody>
  10494. </table>
  10495. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  10496. </h3>
  10497. <p>
  10498. (<em>Appears on:</em>
  10499. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  10500. </p>
  10501. <p>
  10502. <p>SecretStoreRetrySettings defines the retry settings for accessing external secrets manager stores.</p>
  10503. </p>
  10504. <table>
  10505. <thead>
  10506. <tr>
  10507. <th>Field</th>
  10508. <th>Description</th>
  10509. </tr>
  10510. </thead>
  10511. <tbody>
  10512. <tr>
  10513. <td>
  10514. <code>maxRetries</code></br>
  10515. <em>
  10516. int32
  10517. </em>
  10518. </td>
  10519. <td>
  10520. </td>
  10521. </tr>
  10522. <tr>
  10523. <td>
  10524. <code>retryInterval</code></br>
  10525. <em>
  10526. string
  10527. </em>
  10528. </td>
  10529. <td>
  10530. </td>
  10531. </tr>
  10532. </tbody>
  10533. </table>
  10534. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  10535. </h3>
  10536. <p>
  10537. (<em>Appears on:</em>
  10538. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10539. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10540. </p>
  10541. <p>
  10542. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  10543. </p>
  10544. <table>
  10545. <thead>
  10546. <tr>
  10547. <th>Field</th>
  10548. <th>Description</th>
  10549. </tr>
  10550. </thead>
  10551. <tbody>
  10552. <tr>
  10553. <td>
  10554. <code>controller</code></br>
  10555. <em>
  10556. string
  10557. </em>
  10558. </td>
  10559. <td>
  10560. <em>(Optional)</em>
  10561. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  10562. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  10563. </td>
  10564. </tr>
  10565. <tr>
  10566. <td>
  10567. <code>provider</code></br>
  10568. <em>
  10569. <a href="#external-secrets.io/v1.SecretStoreProvider">
  10570. SecretStoreProvider
  10571. </a>
  10572. </em>
  10573. </td>
  10574. <td>
  10575. <p>Used to configure the provider. Only one provider may be set</p>
  10576. </td>
  10577. </tr>
  10578. <tr>
  10579. <td>
  10580. <code>retrySettings</code></br>
  10581. <em>
  10582. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  10583. SecretStoreRetrySettings
  10584. </a>
  10585. </em>
  10586. </td>
  10587. <td>
  10588. <em>(Optional)</em>
  10589. <p>Used to configure http retries if failed</p>
  10590. </td>
  10591. </tr>
  10592. <tr>
  10593. <td>
  10594. <code>refreshInterval</code></br>
  10595. <em>
  10596. int
  10597. </em>
  10598. </td>
  10599. <td>
  10600. <em>(Optional)</em>
  10601. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  10602. </td>
  10603. </tr>
  10604. <tr>
  10605. <td>
  10606. <code>conditions</code></br>
  10607. <em>
  10608. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  10609. []ClusterSecretStoreCondition
  10610. </a>
  10611. </em>
  10612. </td>
  10613. <td>
  10614. <em>(Optional)</em>
  10615. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  10616. </td>
  10617. </tr>
  10618. </tbody>
  10619. </table>
  10620. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  10621. </h3>
  10622. <p>
  10623. (<em>Appears on:</em>
  10624. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10625. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10626. </p>
  10627. <p>
  10628. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  10629. </p>
  10630. <table>
  10631. <thead>
  10632. <tr>
  10633. <th>Field</th>
  10634. <th>Description</th>
  10635. </tr>
  10636. </thead>
  10637. <tbody>
  10638. <tr>
  10639. <td>
  10640. <code>conditions</code></br>
  10641. <em>
  10642. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  10643. []SecretStoreStatusCondition
  10644. </a>
  10645. </em>
  10646. </td>
  10647. <td>
  10648. <em>(Optional)</em>
  10649. </td>
  10650. </tr>
  10651. <tr>
  10652. <td>
  10653. <code>capabilities</code></br>
  10654. <em>
  10655. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  10656. SecretStoreCapabilities
  10657. </a>
  10658. </em>
  10659. </td>
  10660. <td>
  10661. <em>(Optional)</em>
  10662. </td>
  10663. </tr>
  10664. </tbody>
  10665. </table>
  10666. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  10667. </h3>
  10668. <p>
  10669. (<em>Appears on:</em>
  10670. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  10671. </p>
  10672. <p>
  10673. <p>SecretStoreStatusCondition contains condition information for a SecretStore.</p>
  10674. </p>
  10675. <table>
  10676. <thead>
  10677. <tr>
  10678. <th>Field</th>
  10679. <th>Description</th>
  10680. </tr>
  10681. </thead>
  10682. <tbody>
  10683. <tr>
  10684. <td>
  10685. <code>type</code></br>
  10686. <em>
  10687. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  10688. SecretStoreConditionType
  10689. </a>
  10690. </em>
  10691. </td>
  10692. <td>
  10693. </td>
  10694. </tr>
  10695. <tr>
  10696. <td>
  10697. <code>status</code></br>
  10698. <em>
  10699. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  10700. Kubernetes core/v1.ConditionStatus
  10701. </a>
  10702. </em>
  10703. </td>
  10704. <td>
  10705. </td>
  10706. </tr>
  10707. <tr>
  10708. <td>
  10709. <code>reason</code></br>
  10710. <em>
  10711. string
  10712. </em>
  10713. </td>
  10714. <td>
  10715. <em>(Optional)</em>
  10716. </td>
  10717. </tr>
  10718. <tr>
  10719. <td>
  10720. <code>message</code></br>
  10721. <em>
  10722. string
  10723. </em>
  10724. </td>
  10725. <td>
  10726. <em>(Optional)</em>
  10727. </td>
  10728. </tr>
  10729. <tr>
  10730. <td>
  10731. <code>lastTransitionTime</code></br>
  10732. <em>
  10733. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  10734. Kubernetes meta/v1.Time
  10735. </a>
  10736. </em>
  10737. </td>
  10738. <td>
  10739. <em>(Optional)</em>
  10740. </td>
  10741. </tr>
  10742. </tbody>
  10743. </table>
  10744. <h3 id="external-secrets.io/v1.SecretVersionSelectionPolicy">SecretVersionSelectionPolicy
  10745. (<code>string</code> alias)</p></h3>
  10746. <p>
  10747. (<em>Appears on:</em>
  10748. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  10749. </p>
  10750. <p>
  10751. <p>SecretVersionSelectionPolicy defines the policy for selecting secret versions in GCP Secret Manager.</p>
  10752. </p>
  10753. <table>
  10754. <thead>
  10755. <tr>
  10756. <th>Value</th>
  10757. <th>Description</th>
  10758. </tr>
  10759. </thead>
  10760. <tbody><tr><td><p>&#34;LatestOrFail&#34;</p></td>
  10761. <td><p>SecretVersionSelectionPolicyLatestOrFail means the provider always uses &ldquo;latest&rdquo;, or fails if that version is disabled/destroyed.</p>
  10762. </td>
  10763. </tr><tr><td><p>&#34;LatestOrFetch&#34;</p></td>
  10764. <td><p>SecretVersionSelectionPolicyLatestOrFetch behaves like SecretVersionSelectionPolicyLatestOrFail but falls back to fetching the latest version if the version is DESTROYED or DISABLED.</p>
  10765. </td>
  10766. </tr></tbody>
  10767. </table>
  10768. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  10769. </h3>
  10770. <p>
  10771. <p>SecretsClient provides access to secrets.</p>
  10772. </p>
  10773. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  10774. </h3>
  10775. <p>
  10776. (<em>Appears on:</em>
  10777. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  10778. </p>
  10779. <p>
  10780. <p>SecretsManager defines how the provider behaves when interacting with AWS
  10781. SecretsManager. Some of these settings are only applicable to controlling how
  10782. secrets are deleted, and hence only apply to PushSecret (and only when
  10783. deletionPolicy is set to Delete).</p>
  10784. </p>
  10785. <table>
  10786. <thead>
  10787. <tr>
  10788. <th>Field</th>
  10789. <th>Description</th>
  10790. </tr>
  10791. </thead>
  10792. <tbody>
  10793. <tr>
  10794. <td>
  10795. <code>forceDeleteWithoutRecovery</code></br>
  10796. <em>
  10797. bool
  10798. </em>
  10799. </td>
  10800. <td>
  10801. <em>(Optional)</em>
  10802. <p>Specifies whether to delete the secret without any recovery window. You
  10803. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  10804. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  10805. recovery window.
  10806. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  10807. </td>
  10808. </tr>
  10809. <tr>
  10810. <td>
  10811. <code>recoveryWindowInDays</code></br>
  10812. <em>
  10813. int64
  10814. </em>
  10815. </td>
  10816. <td>
  10817. <em>(Optional)</em>
  10818. <p>The number of days from 7 to 30 that Secrets Manager waits before
  10819. permanently deleting the secret. You can&rsquo;t use both this parameter and
  10820. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  10821. then by default Secrets Manager uses a 30-day recovery window.
  10822. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  10823. </td>
  10824. </tr>
  10825. </tbody>
  10826. </table>
  10827. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  10828. </h3>
  10829. <p>
  10830. (<em>Appears on:</em>
  10831. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10832. </p>
  10833. <p>
  10834. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  10835. </p>
  10836. <table>
  10837. <thead>
  10838. <tr>
  10839. <th>Field</th>
  10840. <th>Description</th>
  10841. </tr>
  10842. </thead>
  10843. <tbody>
  10844. <tr>
  10845. <td>
  10846. <code>clientId</code></br>
  10847. <em>
  10848. string
  10849. </em>
  10850. </td>
  10851. <td>
  10852. </td>
  10853. </tr>
  10854. <tr>
  10855. <td>
  10856. <code>clientSecretSecretRef</code></br>
  10857. <em>
  10858. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10859. External Secrets meta/v1.SecretKeySelector
  10860. </a>
  10861. </em>
  10862. </td>
  10863. <td>
  10864. </td>
  10865. </tr>
  10866. </tbody>
  10867. </table>
  10868. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  10869. (<code>string</code> alias)</p></h3>
  10870. <p>
  10871. (<em>Appears on:</em>
  10872. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10873. </p>
  10874. <p>
  10875. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  10876. </p>
  10877. <table>
  10878. <thead>
  10879. <tr>
  10880. <th>Value</th>
  10881. <th>Description</th>
  10882. </tr>
  10883. </thead>
  10884. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  10885. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  10886. see: https://senhasegura.com/devops
  10887. </code></pre>
  10888. </td>
  10889. </tr></tbody>
  10890. </table>
  10891. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  10892. </h3>
  10893. <p>
  10894. (<em>Appears on:</em>
  10895. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10896. </p>
  10897. <p>
  10898. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  10899. </p>
  10900. <table>
  10901. <thead>
  10902. <tr>
  10903. <th>Field</th>
  10904. <th>Description</th>
  10905. </tr>
  10906. </thead>
  10907. <tbody>
  10908. <tr>
  10909. <td>
  10910. <code>url</code></br>
  10911. <em>
  10912. string
  10913. </em>
  10914. </td>
  10915. <td>
  10916. <p>URL of senhasegura</p>
  10917. </td>
  10918. </tr>
  10919. <tr>
  10920. <td>
  10921. <code>module</code></br>
  10922. <em>
  10923. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  10924. SenhaseguraModuleType
  10925. </a>
  10926. </em>
  10927. </td>
  10928. <td>
  10929. <p>Module defines which senhasegura module should be used to get secrets</p>
  10930. </td>
  10931. </tr>
  10932. <tr>
  10933. <td>
  10934. <code>auth</code></br>
  10935. <em>
  10936. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  10937. SenhaseguraAuth
  10938. </a>
  10939. </em>
  10940. </td>
  10941. <td>
  10942. <p>Auth defines parameters to authenticate in senhasegura</p>
  10943. </td>
  10944. </tr>
  10945. <tr>
  10946. <td>
  10947. <code>ignoreSslCertificate</code></br>
  10948. <em>
  10949. bool
  10950. </em>
  10951. </td>
  10952. <td>
  10953. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  10954. </td>
  10955. </tr>
  10956. </tbody>
  10957. </table>
  10958. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  10959. </h3>
  10960. <p>
  10961. (<em>Appears on:</em>
  10962. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  10963. </p>
  10964. <p>
  10965. <p>StoreGeneratorSourceRef allows you to override the source
  10966. from which the secret will be pulled from.
  10967. You can define at maximum one property.</p>
  10968. </p>
  10969. <table>
  10970. <thead>
  10971. <tr>
  10972. <th>Field</th>
  10973. <th>Description</th>
  10974. </tr>
  10975. </thead>
  10976. <tbody>
  10977. <tr>
  10978. <td>
  10979. <code>storeRef</code></br>
  10980. <em>
  10981. <a href="#external-secrets.io/v1.SecretStoreRef">
  10982. SecretStoreRef
  10983. </a>
  10984. </em>
  10985. </td>
  10986. <td>
  10987. <em>(Optional)</em>
  10988. </td>
  10989. </tr>
  10990. <tr>
  10991. <td>
  10992. <code>generatorRef</code></br>
  10993. <em>
  10994. <a href="#external-secrets.io/v1.GeneratorRef">
  10995. GeneratorRef
  10996. </a>
  10997. </em>
  10998. </td>
  10999. <td>
  11000. <em>(Optional)</em>
  11001. <p>GeneratorRef points to a generator custom resource.</p>
  11002. </td>
  11003. </tr>
  11004. </tbody>
  11005. </table>
  11006. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  11007. </h3>
  11008. <p>
  11009. (<em>Appears on:</em>
  11010. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  11011. </p>
  11012. <p>
  11013. <p>StoreSourceRef allows you to override the SecretStore source
  11014. from which the secret will be pulled from.
  11015. You can define at maximum one property.</p>
  11016. </p>
  11017. <table>
  11018. <thead>
  11019. <tr>
  11020. <th>Field</th>
  11021. <th>Description</th>
  11022. </tr>
  11023. </thead>
  11024. <tbody>
  11025. <tr>
  11026. <td>
  11027. <code>storeRef</code></br>
  11028. <em>
  11029. <a href="#external-secrets.io/v1.SecretStoreRef">
  11030. SecretStoreRef
  11031. </a>
  11032. </em>
  11033. </td>
  11034. <td>
  11035. <em>(Optional)</em>
  11036. </td>
  11037. </tr>
  11038. <tr>
  11039. <td>
  11040. <code>generatorRef</code></br>
  11041. <em>
  11042. <a href="#external-secrets.io/v1.GeneratorRef">
  11043. GeneratorRef
  11044. </a>
  11045. </em>
  11046. </td>
  11047. <td>
  11048. <p>GeneratorRef points to a generator custom resource.</p>
  11049. <p>Deprecated: The generatorRef is not implemented in .data[].
  11050. this will be removed with v1.</p>
  11051. </td>
  11052. </tr>
  11053. </tbody>
  11054. </table>
  11055. <h3 id="external-secrets.io/v1.Tag">Tag
  11056. </h3>
  11057. <p>
  11058. <p>Tag is a key-value pair that can be attached to an AWS resource.
  11059. see: <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html</a></p>
  11060. </p>
  11061. <table>
  11062. <thead>
  11063. <tr>
  11064. <th>Field</th>
  11065. <th>Description</th>
  11066. </tr>
  11067. </thead>
  11068. <tbody>
  11069. <tr>
  11070. <td>
  11071. <code>key</code></br>
  11072. <em>
  11073. string
  11074. </em>
  11075. </td>
  11076. <td>
  11077. </td>
  11078. </tr>
  11079. <tr>
  11080. <td>
  11081. <code>value</code></br>
  11082. <em>
  11083. string
  11084. </em>
  11085. </td>
  11086. <td>
  11087. </td>
  11088. </tr>
  11089. </tbody>
  11090. </table>
  11091. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  11092. (<code>string</code> alias)</p></h3>
  11093. <p>
  11094. (<em>Appears on:</em>
  11095. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  11096. </p>
  11097. <p>
  11098. <p>TemplateEngineVersion specifies the template engine version that should be used to
  11099. compile/execute the template.</p>
  11100. </p>
  11101. <table>
  11102. <thead>
  11103. <tr>
  11104. <th>Value</th>
  11105. <th>Description</th>
  11106. </tr>
  11107. </thead>
  11108. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  11109. <td><p>TemplateEngineV2 is the currently supported template engine version.</p>
  11110. </td>
  11111. </tr></tbody>
  11112. </table>
  11113. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  11114. </h3>
  11115. <p>
  11116. (<em>Appears on:</em>
  11117. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  11118. </p>
  11119. <p>
  11120. <p>TemplateFrom specifies a source for templates.
  11121. Each item in the list can either reference a ConfigMap or a Secret resource.</p>
  11122. </p>
  11123. <table>
  11124. <thead>
  11125. <tr>
  11126. <th>Field</th>
  11127. <th>Description</th>
  11128. </tr>
  11129. </thead>
  11130. <tbody>
  11131. <tr>
  11132. <td>
  11133. <code>configMap</code></br>
  11134. <em>
  11135. <a href="#external-secrets.io/v1.TemplateRef">
  11136. TemplateRef
  11137. </a>
  11138. </em>
  11139. </td>
  11140. <td>
  11141. </td>
  11142. </tr>
  11143. <tr>
  11144. <td>
  11145. <code>secret</code></br>
  11146. <em>
  11147. <a href="#external-secrets.io/v1.TemplateRef">
  11148. TemplateRef
  11149. </a>
  11150. </em>
  11151. </td>
  11152. <td>
  11153. </td>
  11154. </tr>
  11155. <tr>
  11156. <td>
  11157. <code>target</code></br>
  11158. <em>
  11159. string
  11160. </em>
  11161. </td>
  11162. <td>
  11163. <em>(Optional)</em>
  11164. <p>Target specifies where to place the template result.
  11165. For Secret resources, common values are: &ldquo;Data&rdquo;, &ldquo;Annotations&rdquo;, &ldquo;Labels&rdquo;.
  11166. For custom resources (when spec.target.manifest is set), this supports
  11167. nested paths like &ldquo;spec.database.config&rdquo; or &ldquo;data&rdquo;.</p>
  11168. </td>
  11169. </tr>
  11170. <tr>
  11171. <td>
  11172. <code>literal</code></br>
  11173. <em>
  11174. string
  11175. </em>
  11176. </td>
  11177. <td>
  11178. <em>(Optional)</em>
  11179. </td>
  11180. </tr>
  11181. </tbody>
  11182. </table>
  11183. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  11184. (<code>string</code> alias)</p></h3>
  11185. <p>
  11186. (<em>Appears on:</em>
  11187. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  11188. </p>
  11189. <p>
  11190. <p>TemplateMergePolicy defines how the rendered template should be merged with the existing Secret data.</p>
  11191. </p>
  11192. <table>
  11193. <thead>
  11194. <tr>
  11195. <th>Value</th>
  11196. <th>Description</th>
  11197. </tr>
  11198. </thead>
  11199. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  11200. <td></td>
  11201. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  11202. <td></td>
  11203. </tr></tbody>
  11204. </table>
  11205. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  11206. </h3>
  11207. <p>
  11208. (<em>Appears on:</em>
  11209. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  11210. </p>
  11211. <p>
  11212. <p>TemplateRef specifies a reference to either a ConfigMap or a Secret resource.</p>
  11213. </p>
  11214. <table>
  11215. <thead>
  11216. <tr>
  11217. <th>Field</th>
  11218. <th>Description</th>
  11219. </tr>
  11220. </thead>
  11221. <tbody>
  11222. <tr>
  11223. <td>
  11224. <code>name</code></br>
  11225. <em>
  11226. string
  11227. </em>
  11228. </td>
  11229. <td>
  11230. <p>The name of the ConfigMap/Secret resource</p>
  11231. </td>
  11232. </tr>
  11233. <tr>
  11234. <td>
  11235. <code>items</code></br>
  11236. <em>
  11237. <a href="#external-secrets.io/v1.TemplateRefItem">
  11238. []TemplateRefItem
  11239. </a>
  11240. </em>
  11241. </td>
  11242. <td>
  11243. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  11244. </td>
  11245. </tr>
  11246. </tbody>
  11247. </table>
  11248. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  11249. </h3>
  11250. <p>
  11251. (<em>Appears on:</em>
  11252. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  11253. </p>
  11254. <p>
  11255. <p>TemplateRefItem specifies a key in the ConfigMap/Secret to use as a template for Secret data.</p>
  11256. </p>
  11257. <table>
  11258. <thead>
  11259. <tr>
  11260. <th>Field</th>
  11261. <th>Description</th>
  11262. </tr>
  11263. </thead>
  11264. <tbody>
  11265. <tr>
  11266. <td>
  11267. <code>key</code></br>
  11268. <em>
  11269. string
  11270. </em>
  11271. </td>
  11272. <td>
  11273. <p>A key in the ConfigMap/Secret</p>
  11274. </td>
  11275. </tr>
  11276. <tr>
  11277. <td>
  11278. <code>templateAs</code></br>
  11279. <em>
  11280. <a href="#external-secrets.io/v1.TemplateScope">
  11281. TemplateScope
  11282. </a>
  11283. </em>
  11284. </td>
  11285. <td>
  11286. </td>
  11287. </tr>
  11288. </tbody>
  11289. </table>
  11290. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  11291. (<code>string</code> alias)</p></h3>
  11292. <p>
  11293. (<em>Appears on:</em>
  11294. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  11295. </p>
  11296. <p>
  11297. <p>TemplateScope specifies how the template keys should be interpreted.</p>
  11298. </p>
  11299. <table>
  11300. <thead>
  11301. <tr>
  11302. <th>Value</th>
  11303. <th>Description</th>
  11304. </tr>
  11305. </thead>
  11306. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  11307. <td></td>
  11308. </tr><tr><td><p>&#34;Values&#34;</p></td>
  11309. <td></td>
  11310. </tr></tbody>
  11311. </table>
  11312. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  11313. </h3>
  11314. <p>
  11315. (<em>Appears on:</em>
  11316. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  11317. </p>
  11318. <p>
  11319. <p>TokenAuth defines token-based authentication configuration for Kubernetes.</p>
  11320. </p>
  11321. <table>
  11322. <thead>
  11323. <tr>
  11324. <th>Field</th>
  11325. <th>Description</th>
  11326. </tr>
  11327. </thead>
  11328. <tbody>
  11329. <tr>
  11330. <td>
  11331. <code>bearerToken</code></br>
  11332. <em>
  11333. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11334. External Secrets meta/v1.SecretKeySelector
  11335. </a>
  11336. </em>
  11337. </td>
  11338. <td>
  11339. </td>
  11340. </tr>
  11341. </tbody>
  11342. </table>
  11343. <h3 id="external-secrets.io/v1.TokenAuthCredentials">TokenAuthCredentials
  11344. </h3>
  11345. <p>
  11346. (<em>Appears on:</em>
  11347. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  11348. </p>
  11349. <p>
  11350. <p>TokenAuthCredentials represents the credentials for access token-based authentication.</p>
  11351. </p>
  11352. <table>
  11353. <thead>
  11354. <tr>
  11355. <th>Field</th>
  11356. <th>Description</th>
  11357. </tr>
  11358. </thead>
  11359. <tbody>
  11360. <tr>
  11361. <td>
  11362. <code>accessToken</code></br>
  11363. <em>
  11364. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11365. External Secrets meta/v1.SecretKeySelector
  11366. </a>
  11367. </em>
  11368. </td>
  11369. <td>
  11370. </td>
  11371. </tr>
  11372. </tbody>
  11373. </table>
  11374. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  11375. </h3>
  11376. <p>
  11377. (<em>Appears on:</em>
  11378. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  11379. </p>
  11380. <p>
  11381. <p>UniversalAuthCredentials represents the client credentials for universal authentication.</p>
  11382. </p>
  11383. <table>
  11384. <thead>
  11385. <tr>
  11386. <th>Field</th>
  11387. <th>Description</th>
  11388. </tr>
  11389. </thead>
  11390. <tbody>
  11391. <tr>
  11392. <td>
  11393. <code>clientId</code></br>
  11394. <em>
  11395. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11396. External Secrets meta/v1.SecretKeySelector
  11397. </a>
  11398. </em>
  11399. </td>
  11400. <td>
  11401. </td>
  11402. </tr>
  11403. <tr>
  11404. <td>
  11405. <code>clientSecret</code></br>
  11406. <em>
  11407. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11408. External Secrets meta/v1.SecretKeySelector
  11409. </a>
  11410. </em>
  11411. </td>
  11412. <td>
  11413. </td>
  11414. </tr>
  11415. </tbody>
  11416. </table>
  11417. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  11418. (<code>byte</code> alias)</p></h3>
  11419. <p>
  11420. (<em>Appears on:</em>
  11421. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  11422. </p>
  11423. <p>
  11424. <p>ValidationResult is defined type for the number of validation results.</p>
  11425. </p>
  11426. <table>
  11427. <thead>
  11428. <tr>
  11429. <th>Value</th>
  11430. <th>Description</th>
  11431. </tr>
  11432. </thead>
  11433. <tbody><tr><td><p>2</p></td>
  11434. <td><p>ValidationResultError indicates that there is a misconfiguration.</p>
  11435. </td>
  11436. </tr><tr><td><p>0</p></td>
  11437. <td><p>ValidationResultReady indicates that the client is configured correctly
  11438. and can be used.</p>
  11439. </td>
  11440. </tr><tr><td><p>1</p></td>
  11441. <td><p>ValidationResultUnknown indicates that the client can be used
  11442. but information is missing, and it can not be validated.</p>
  11443. </td>
  11444. </tr></tbody>
  11445. </table>
  11446. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  11447. </h3>
  11448. <p>
  11449. (<em>Appears on:</em>
  11450. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11451. </p>
  11452. <p>
  11453. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  11454. with the role and secret stored in a Kubernetes Secret resource.</p>
  11455. </p>
  11456. <table>
  11457. <thead>
  11458. <tr>
  11459. <th>Field</th>
  11460. <th>Description</th>
  11461. </tr>
  11462. </thead>
  11463. <tbody>
  11464. <tr>
  11465. <td>
  11466. <code>path</code></br>
  11467. <em>
  11468. string
  11469. </em>
  11470. </td>
  11471. <td>
  11472. <p>Path where the App Role authentication backend is mounted
  11473. in Vault, e.g: &ldquo;approle&rdquo;</p>
  11474. </td>
  11475. </tr>
  11476. <tr>
  11477. <td>
  11478. <code>roleId</code></br>
  11479. <em>
  11480. string
  11481. </em>
  11482. </td>
  11483. <td>
  11484. <em>(Optional)</em>
  11485. <p>RoleID configured in the App Role authentication backend when setting
  11486. up the authentication backend in Vault.</p>
  11487. </td>
  11488. </tr>
  11489. <tr>
  11490. <td>
  11491. <code>roleRef</code></br>
  11492. <em>
  11493. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11494. External Secrets meta/v1.SecretKeySelector
  11495. </a>
  11496. </em>
  11497. </td>
  11498. <td>
  11499. <em>(Optional)</em>
  11500. <p>Reference to a key in a Secret that contains the App Role ID used
  11501. to authenticate with Vault.
  11502. The <code>key</code> field must be specified and denotes which entry within the Secret
  11503. resource is used as the app role id.</p>
  11504. </td>
  11505. </tr>
  11506. <tr>
  11507. <td>
  11508. <code>secretRef</code></br>
  11509. <em>
  11510. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11511. External Secrets meta/v1.SecretKeySelector
  11512. </a>
  11513. </em>
  11514. </td>
  11515. <td>
  11516. <p>Reference to a key in a Secret that contains the App Role secret used
  11517. to authenticate with Vault.
  11518. The <code>key</code> field must be specified and denotes which entry within the Secret
  11519. resource is used as the app role secret.</p>
  11520. </td>
  11521. </tr>
  11522. </tbody>
  11523. </table>
  11524. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  11525. </h3>
  11526. <p>
  11527. (<em>Appears on:</em>
  11528. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11529. </p>
  11530. <p>
  11531. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  11532. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  11533. can be specified. A namespace to authenticate against can optionally be specified.</p>
  11534. </p>
  11535. <table>
  11536. <thead>
  11537. <tr>
  11538. <th>Field</th>
  11539. <th>Description</th>
  11540. </tr>
  11541. </thead>
  11542. <tbody>
  11543. <tr>
  11544. <td>
  11545. <code>namespace</code></br>
  11546. <em>
  11547. string
  11548. </em>
  11549. </td>
  11550. <td>
  11551. <em>(Optional)</em>
  11552. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  11553. Namespaces is a set of features within Vault Enterprise that allows
  11554. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11555. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  11556. This will default to Vault.Namespace field if set, or empty otherwise</p>
  11557. </td>
  11558. </tr>
  11559. <tr>
  11560. <td>
  11561. <code>tokenSecretRef</code></br>
  11562. <em>
  11563. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11564. External Secrets meta/v1.SecretKeySelector
  11565. </a>
  11566. </em>
  11567. </td>
  11568. <td>
  11569. <em>(Optional)</em>
  11570. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  11571. </td>
  11572. </tr>
  11573. <tr>
  11574. <td>
  11575. <code>appRole</code></br>
  11576. <em>
  11577. <a href="#external-secrets.io/v1.VaultAppRole">
  11578. VaultAppRole
  11579. </a>
  11580. </em>
  11581. </td>
  11582. <td>
  11583. <em>(Optional)</em>
  11584. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  11585. with the role and secret stored in a Kubernetes Secret resource.</p>
  11586. </td>
  11587. </tr>
  11588. <tr>
  11589. <td>
  11590. <code>kubernetes</code></br>
  11591. <em>
  11592. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  11593. VaultKubernetesAuth
  11594. </a>
  11595. </em>
  11596. </td>
  11597. <td>
  11598. <em>(Optional)</em>
  11599. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  11600. token stored in the named Secret resource to the Vault server.</p>
  11601. </td>
  11602. </tr>
  11603. <tr>
  11604. <td>
  11605. <code>ldap</code></br>
  11606. <em>
  11607. <a href="#external-secrets.io/v1.VaultLdapAuth">
  11608. VaultLdapAuth
  11609. </a>
  11610. </em>
  11611. </td>
  11612. <td>
  11613. <em>(Optional)</em>
  11614. <p>Ldap authenticates with Vault by passing username/password pair using
  11615. the LDAP authentication method</p>
  11616. </td>
  11617. </tr>
  11618. <tr>
  11619. <td>
  11620. <code>jwt</code></br>
  11621. <em>
  11622. <a href="#external-secrets.io/v1.VaultJwtAuth">
  11623. VaultJwtAuth
  11624. </a>
  11625. </em>
  11626. </td>
  11627. <td>
  11628. <em>(Optional)</em>
  11629. <p>Jwt authenticates with Vault by passing role and JWT token using the
  11630. JWT/OIDC authentication method</p>
  11631. </td>
  11632. </tr>
  11633. <tr>
  11634. <td>
  11635. <code>cert</code></br>
  11636. <em>
  11637. <a href="#external-secrets.io/v1.VaultCertAuth">
  11638. VaultCertAuth
  11639. </a>
  11640. </em>
  11641. </td>
  11642. <td>
  11643. <em>(Optional)</em>
  11644. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  11645. Cert authentication method</p>
  11646. </td>
  11647. </tr>
  11648. <tr>
  11649. <td>
  11650. <code>iam</code></br>
  11651. <em>
  11652. <a href="#external-secrets.io/v1.VaultIamAuth">
  11653. VaultIamAuth
  11654. </a>
  11655. </em>
  11656. </td>
  11657. <td>
  11658. <em>(Optional)</em>
  11659. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  11660. AWS IAM authentication method</p>
  11661. </td>
  11662. </tr>
  11663. <tr>
  11664. <td>
  11665. <code>userPass</code></br>
  11666. <em>
  11667. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  11668. VaultUserPassAuth
  11669. </a>
  11670. </em>
  11671. </td>
  11672. <td>
  11673. <em>(Optional)</em>
  11674. <p>UserPass authenticates with Vault by passing username/password pair</p>
  11675. </td>
  11676. </tr>
  11677. </tbody>
  11678. </table>
  11679. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  11680. </h3>
  11681. <p>
  11682. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  11683. Only one of secretRef or jwt can be specified.
  11684. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  11685. </p>
  11686. <table>
  11687. <thead>
  11688. <tr>
  11689. <th>Field</th>
  11690. <th>Description</th>
  11691. </tr>
  11692. </thead>
  11693. <tbody>
  11694. <tr>
  11695. <td>
  11696. <code>secretRef</code></br>
  11697. <em>
  11698. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11699. VaultAwsAuthSecretRef
  11700. </a>
  11701. </em>
  11702. </td>
  11703. <td>
  11704. <em>(Optional)</em>
  11705. </td>
  11706. </tr>
  11707. <tr>
  11708. <td>
  11709. <code>jwt</code></br>
  11710. <em>
  11711. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11712. VaultAwsJWTAuth
  11713. </a>
  11714. </em>
  11715. </td>
  11716. <td>
  11717. <em>(Optional)</em>
  11718. </td>
  11719. </tr>
  11720. </tbody>
  11721. </table>
  11722. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  11723. </h3>
  11724. <p>
  11725. (<em>Appears on:</em>
  11726. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11727. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11728. </p>
  11729. <p>
  11730. <p>VaultAwsAuthSecretRef holds secret references for AWS credentials
  11731. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  11732. </p>
  11733. <table>
  11734. <thead>
  11735. <tr>
  11736. <th>Field</th>
  11737. <th>Description</th>
  11738. </tr>
  11739. </thead>
  11740. <tbody>
  11741. <tr>
  11742. <td>
  11743. <code>accessKeyIDSecretRef</code></br>
  11744. <em>
  11745. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11746. External Secrets meta/v1.SecretKeySelector
  11747. </a>
  11748. </em>
  11749. </td>
  11750. <td>
  11751. <em>(Optional)</em>
  11752. <p>The AccessKeyID is used for authentication</p>
  11753. </td>
  11754. </tr>
  11755. <tr>
  11756. <td>
  11757. <code>secretAccessKeySecretRef</code></br>
  11758. <em>
  11759. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11760. External Secrets meta/v1.SecretKeySelector
  11761. </a>
  11762. </em>
  11763. </td>
  11764. <td>
  11765. <em>(Optional)</em>
  11766. <p>The SecretAccessKey is used for authentication</p>
  11767. </td>
  11768. </tr>
  11769. <tr>
  11770. <td>
  11771. <code>sessionTokenSecretRef</code></br>
  11772. <em>
  11773. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11774. External Secrets meta/v1.SecretKeySelector
  11775. </a>
  11776. </em>
  11777. </td>
  11778. <td>
  11779. <em>(Optional)</em>
  11780. <p>The SessionToken used for authentication
  11781. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  11782. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  11783. </td>
  11784. </tr>
  11785. </tbody>
  11786. </table>
  11787. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  11788. </h3>
  11789. <p>
  11790. (<em>Appears on:</em>
  11791. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11792. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11793. </p>
  11794. <p>
  11795. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  11796. </p>
  11797. <table>
  11798. <thead>
  11799. <tr>
  11800. <th>Field</th>
  11801. <th>Description</th>
  11802. </tr>
  11803. </thead>
  11804. <tbody>
  11805. <tr>
  11806. <td>
  11807. <code>serviceAccountRef</code></br>
  11808. <em>
  11809. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11810. External Secrets meta/v1.ServiceAccountSelector
  11811. </a>
  11812. </em>
  11813. </td>
  11814. <td>
  11815. <em>(Optional)</em>
  11816. </td>
  11817. </tr>
  11818. </tbody>
  11819. </table>
  11820. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  11821. </h3>
  11822. <p>
  11823. (<em>Appears on:</em>
  11824. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11825. </p>
  11826. <p>
  11827. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  11828. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  11829. </p>
  11830. <table>
  11831. <thead>
  11832. <tr>
  11833. <th>Field</th>
  11834. <th>Description</th>
  11835. </tr>
  11836. </thead>
  11837. <tbody>
  11838. <tr>
  11839. <td>
  11840. <code>path</code></br>
  11841. <em>
  11842. string
  11843. </em>
  11844. </td>
  11845. <td>
  11846. <em>(Optional)</em>
  11847. <p>Path where the Certificate authentication backend is mounted
  11848. in Vault, e.g: &ldquo;cert&rdquo;</p>
  11849. </td>
  11850. </tr>
  11851. <tr>
  11852. <td>
  11853. <code>clientCert</code></br>
  11854. <em>
  11855. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11856. External Secrets meta/v1.SecretKeySelector
  11857. </a>
  11858. </em>
  11859. </td>
  11860. <td>
  11861. <em>(Optional)</em>
  11862. <p>ClientCert is a certificate to authenticate using the Cert Vault
  11863. authentication method</p>
  11864. </td>
  11865. </tr>
  11866. <tr>
  11867. <td>
  11868. <code>secretRef</code></br>
  11869. <em>
  11870. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11871. External Secrets meta/v1.SecretKeySelector
  11872. </a>
  11873. </em>
  11874. </td>
  11875. <td>
  11876. <em>(Optional)</em>
  11877. <p>SecretRef to a key in a Secret resource containing client private key to
  11878. authenticate with Vault using the Cert authentication method</p>
  11879. </td>
  11880. </tr>
  11881. </tbody>
  11882. </table>
  11883. <h3 id="external-secrets.io/v1.VaultCheckAndSet">VaultCheckAndSet
  11884. </h3>
  11885. <p>
  11886. (<em>Appears on:</em>
  11887. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11888. </p>
  11889. <p>
  11890. <p>VaultCheckAndSet defines the Check-And-Set (CAS) settings for Vault KV v2 PushSecret operations.</p>
  11891. </p>
  11892. <table>
  11893. <thead>
  11894. <tr>
  11895. <th>Field</th>
  11896. <th>Description</th>
  11897. </tr>
  11898. </thead>
  11899. <tbody>
  11900. <tr>
  11901. <td>
  11902. <code>required</code></br>
  11903. <em>
  11904. bool
  11905. </em>
  11906. </td>
  11907. <td>
  11908. <em>(Optional)</em>
  11909. <p>Required when true, all write operations must include a check-and-set parameter.
  11910. This helps prevent unintentional overwrites of secrets.</p>
  11911. </td>
  11912. </tr>
  11913. </tbody>
  11914. </table>
  11915. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  11916. </h3>
  11917. <p>
  11918. (<em>Appears on:</em>
  11919. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11920. </p>
  11921. <p>
  11922. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  11923. when the Vault server requires mutual authentication.</p>
  11924. </p>
  11925. <table>
  11926. <thead>
  11927. <tr>
  11928. <th>Field</th>
  11929. <th>Description</th>
  11930. </tr>
  11931. </thead>
  11932. <tbody>
  11933. <tr>
  11934. <td>
  11935. <code>certSecretRef</code></br>
  11936. <em>
  11937. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11938. External Secrets meta/v1.SecretKeySelector
  11939. </a>
  11940. </em>
  11941. </td>
  11942. <td>
  11943. <em>(Optional)</em>
  11944. <p>CertSecretRef is a certificate added to the transport layer
  11945. when communicating with the Vault server.
  11946. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  11947. </td>
  11948. </tr>
  11949. <tr>
  11950. <td>
  11951. <code>keySecretRef</code></br>
  11952. <em>
  11953. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11954. External Secrets meta/v1.SecretKeySelector
  11955. </a>
  11956. </em>
  11957. </td>
  11958. <td>
  11959. <em>(Optional)</em>
  11960. <p>KeySecretRef to a key in a Secret resource containing client private key
  11961. added to the transport layer when communicating with the Vault server.
  11962. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  11963. </td>
  11964. </tr>
  11965. </tbody>
  11966. </table>
  11967. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  11968. </h3>
  11969. <p>
  11970. (<em>Appears on:</em>
  11971. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11972. </p>
  11973. <p>
  11974. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  11975. <p>When JWTAuth and SecretRef are not specified, the provider will use the controller pod&rsquo;s
  11976. identity to authenticate with AWS. This supports both IRSA and EKS Pod Identity.</p>
  11977. </p>
  11978. <table>
  11979. <thead>
  11980. <tr>
  11981. <th>Field</th>
  11982. <th>Description</th>
  11983. </tr>
  11984. </thead>
  11985. <tbody>
  11986. <tr>
  11987. <td>
  11988. <code>path</code></br>
  11989. <em>
  11990. string
  11991. </em>
  11992. </td>
  11993. <td>
  11994. <em>(Optional)</em>
  11995. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  11996. </td>
  11997. </tr>
  11998. <tr>
  11999. <td>
  12000. <code>region</code></br>
  12001. <em>
  12002. string
  12003. </em>
  12004. </td>
  12005. <td>
  12006. <em>(Optional)</em>
  12007. <p>AWS region</p>
  12008. </td>
  12009. </tr>
  12010. <tr>
  12011. <td>
  12012. <code>role</code></br>
  12013. <em>
  12014. string
  12015. </em>
  12016. </td>
  12017. <td>
  12018. <em>(Optional)</em>
  12019. <p>This is the AWS role to be assumed before talking to vault</p>
  12020. </td>
  12021. </tr>
  12022. <tr>
  12023. <td>
  12024. <code>vaultRole</code></br>
  12025. <em>
  12026. string
  12027. </em>
  12028. </td>
  12029. <td>
  12030. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  12031. </td>
  12032. </tr>
  12033. <tr>
  12034. <td>
  12035. <code>externalID</code></br>
  12036. <em>
  12037. string
  12038. </em>
  12039. </td>
  12040. <td>
  12041. <p>AWS External ID set on assumed IAM roles</p>
  12042. </td>
  12043. </tr>
  12044. <tr>
  12045. <td>
  12046. <code>vaultAwsIamServerID</code></br>
  12047. <em>
  12048. string
  12049. </em>
  12050. </td>
  12051. <td>
  12052. <em>(Optional)</em>
  12053. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  12054. </td>
  12055. </tr>
  12056. <tr>
  12057. <td>
  12058. <code>secretRef</code></br>
  12059. <em>
  12060. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  12061. VaultAwsAuthSecretRef
  12062. </a>
  12063. </em>
  12064. </td>
  12065. <td>
  12066. <em>(Optional)</em>
  12067. <p>Specify credentials in a Secret object</p>
  12068. </td>
  12069. </tr>
  12070. <tr>
  12071. <td>
  12072. <code>jwt</code></br>
  12073. <em>
  12074. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  12075. VaultAwsJWTAuth
  12076. </a>
  12077. </em>
  12078. </td>
  12079. <td>
  12080. <em>(Optional)</em>
  12081. <p>Specify a service account with IRSA enabled</p>
  12082. </td>
  12083. </tr>
  12084. </tbody>
  12085. </table>
  12086. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  12087. </h3>
  12088. <p>
  12089. (<em>Appears on:</em>
  12090. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12091. </p>
  12092. <p>
  12093. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  12094. method, with the role name and a token stored in a Kubernetes Secret resource or
  12095. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  12096. </p>
  12097. <table>
  12098. <thead>
  12099. <tr>
  12100. <th>Field</th>
  12101. <th>Description</th>
  12102. </tr>
  12103. </thead>
  12104. <tbody>
  12105. <tr>
  12106. <td>
  12107. <code>path</code></br>
  12108. <em>
  12109. string
  12110. </em>
  12111. </td>
  12112. <td>
  12113. <p>Path where the JWT authentication backend is mounted
  12114. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  12115. </td>
  12116. </tr>
  12117. <tr>
  12118. <td>
  12119. <code>role</code></br>
  12120. <em>
  12121. string
  12122. </em>
  12123. </td>
  12124. <td>
  12125. <em>(Optional)</em>
  12126. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  12127. authentication method</p>
  12128. </td>
  12129. </tr>
  12130. <tr>
  12131. <td>
  12132. <code>secretRef</code></br>
  12133. <em>
  12134. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12135. External Secrets meta/v1.SecretKeySelector
  12136. </a>
  12137. </em>
  12138. </td>
  12139. <td>
  12140. <em>(Optional)</em>
  12141. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  12142. authenticate with Vault using the JWT/OIDC authentication method.</p>
  12143. </td>
  12144. </tr>
  12145. <tr>
  12146. <td>
  12147. <code>kubernetesServiceAccountToken</code></br>
  12148. <em>
  12149. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  12150. VaultKubernetesServiceAccountTokenAuth
  12151. </a>
  12152. </em>
  12153. </td>
  12154. <td>
  12155. <em>(Optional)</em>
  12156. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  12157. a token for with the <code>TokenRequest</code> API.</p>
  12158. </td>
  12159. </tr>
  12160. </tbody>
  12161. </table>
  12162. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  12163. (<code>string</code> alias)</p></h3>
  12164. <p>
  12165. (<em>Appears on:</em>
  12166. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  12167. </p>
  12168. <p>
  12169. <p>VaultKVStoreVersion represents the version of the Vault KV secret engine.</p>
  12170. </p>
  12171. <table>
  12172. <thead>
  12173. <tr>
  12174. <th>Value</th>
  12175. <th>Description</th>
  12176. </tr>
  12177. </thead>
  12178. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  12179. <td></td>
  12180. </tr><tr><td><p>&#34;v2&#34;</p></td>
  12181. <td></td>
  12182. </tr></tbody>
  12183. </table>
  12184. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  12185. </h3>
  12186. <p>
  12187. (<em>Appears on:</em>
  12188. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12189. </p>
  12190. <p>
  12191. <p>VaultKubernetesAuth authenticates against Vault using a Kubernetes ServiceAccount token stored in
  12192. a Secret.</p>
  12193. </p>
  12194. <table>
  12195. <thead>
  12196. <tr>
  12197. <th>Field</th>
  12198. <th>Description</th>
  12199. </tr>
  12200. </thead>
  12201. <tbody>
  12202. <tr>
  12203. <td>
  12204. <code>mountPath</code></br>
  12205. <em>
  12206. string
  12207. </em>
  12208. </td>
  12209. <td>
  12210. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  12211. &ldquo;kubernetes&rdquo;</p>
  12212. </td>
  12213. </tr>
  12214. <tr>
  12215. <td>
  12216. <code>serviceAccountRef</code></br>
  12217. <em>
  12218. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  12219. External Secrets meta/v1.ServiceAccountSelector
  12220. </a>
  12221. </em>
  12222. </td>
  12223. <td>
  12224. <em>(Optional)</em>
  12225. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  12226. If the service account is specified, the service account secret token JWT will be used
  12227. for authenticating with Vault. If the service account selector is not supplied,
  12228. the secretRef will be used instead.</p>
  12229. </td>
  12230. </tr>
  12231. <tr>
  12232. <td>
  12233. <code>secretRef</code></br>
  12234. <em>
  12235. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12236. External Secrets meta/v1.SecretKeySelector
  12237. </a>
  12238. </em>
  12239. </td>
  12240. <td>
  12241. <em>(Optional)</em>
  12242. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  12243. for authenticating with Vault. If a name is specified without a key,
  12244. <code>token</code> is the default. If one is not specified, the one bound to
  12245. the controller will be used.</p>
  12246. </td>
  12247. </tr>
  12248. <tr>
  12249. <td>
  12250. <code>role</code></br>
  12251. <em>
  12252. string
  12253. </em>
  12254. </td>
  12255. <td>
  12256. <p>A required field containing the Vault Role to assume. A Role binds a
  12257. Kubernetes ServiceAccount with a set of Vault policies.</p>
  12258. </td>
  12259. </tr>
  12260. </tbody>
  12261. </table>
  12262. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  12263. </h3>
  12264. <p>
  12265. (<em>Appears on:</em>
  12266. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  12267. </p>
  12268. <p>
  12269. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  12270. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  12271. </p>
  12272. <table>
  12273. <thead>
  12274. <tr>
  12275. <th>Field</th>
  12276. <th>Description</th>
  12277. </tr>
  12278. </thead>
  12279. <tbody>
  12280. <tr>
  12281. <td>
  12282. <code>serviceAccountRef</code></br>
  12283. <em>
  12284. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  12285. External Secrets meta/v1.ServiceAccountSelector
  12286. </a>
  12287. </em>
  12288. </td>
  12289. <td>
  12290. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  12291. </td>
  12292. </tr>
  12293. <tr>
  12294. <td>
  12295. <code>audiences</code></br>
  12296. <em>
  12297. []string
  12298. </em>
  12299. </td>
  12300. <td>
  12301. <em>(Optional)</em>
  12302. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  12303. account token for the service account referenced by <code>serviceAccountRef</code>.
  12304. Defaults to a single audience <code>vault</code> it not specified.
  12305. Deprecated: use serviceAccountRef.Audiences instead</p>
  12306. </td>
  12307. </tr>
  12308. <tr>
  12309. <td>
  12310. <code>expirationSeconds</code></br>
  12311. <em>
  12312. int64
  12313. </em>
  12314. </td>
  12315. <td>
  12316. <em>(Optional)</em>
  12317. <p>Optional expiration time in seconds that will be used to request a temporary
  12318. Kubernetes service account token for the service account referenced by
  12319. <code>serviceAccountRef</code>.
  12320. Deprecated: this will be removed in the future.
  12321. Defaults to 10 minutes.</p>
  12322. </td>
  12323. </tr>
  12324. </tbody>
  12325. </table>
  12326. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  12327. </h3>
  12328. <p>
  12329. (<em>Appears on:</em>
  12330. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12331. </p>
  12332. <p>
  12333. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  12334. with the username and password stored in a Kubernetes Secret resource.</p>
  12335. </p>
  12336. <table>
  12337. <thead>
  12338. <tr>
  12339. <th>Field</th>
  12340. <th>Description</th>
  12341. </tr>
  12342. </thead>
  12343. <tbody>
  12344. <tr>
  12345. <td>
  12346. <code>path</code></br>
  12347. <em>
  12348. string
  12349. </em>
  12350. </td>
  12351. <td>
  12352. <p>Path where the LDAP authentication backend is mounted
  12353. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  12354. </td>
  12355. </tr>
  12356. <tr>
  12357. <td>
  12358. <code>username</code></br>
  12359. <em>
  12360. string
  12361. </em>
  12362. </td>
  12363. <td>
  12364. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  12365. authentication method</p>
  12366. </td>
  12367. </tr>
  12368. <tr>
  12369. <td>
  12370. <code>secretRef</code></br>
  12371. <em>
  12372. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12373. External Secrets meta/v1.SecretKeySelector
  12374. </a>
  12375. </em>
  12376. </td>
  12377. <td>
  12378. <em>(Optional)</em>
  12379. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  12380. user used to authenticate with Vault using the LDAP authentication
  12381. method</p>
  12382. </td>
  12383. </tr>
  12384. </tbody>
  12385. </table>
  12386. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  12387. </h3>
  12388. <p>
  12389. (<em>Appears on:</em>
  12390. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12391. </p>
  12392. <p>
  12393. <p>VaultProvider configures a store to sync secrets using a HashiCorp Vault
  12394. KV backend.</p>
  12395. </p>
  12396. <table>
  12397. <thead>
  12398. <tr>
  12399. <th>Field</th>
  12400. <th>Description</th>
  12401. </tr>
  12402. </thead>
  12403. <tbody>
  12404. <tr>
  12405. <td>
  12406. <code>auth</code></br>
  12407. <em>
  12408. <a href="#external-secrets.io/v1.VaultAuth">
  12409. VaultAuth
  12410. </a>
  12411. </em>
  12412. </td>
  12413. <td>
  12414. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  12415. </td>
  12416. </tr>
  12417. <tr>
  12418. <td>
  12419. <code>server</code></br>
  12420. <em>
  12421. string
  12422. </em>
  12423. </td>
  12424. <td>
  12425. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  12426. </td>
  12427. </tr>
  12428. <tr>
  12429. <td>
  12430. <code>path</code></br>
  12431. <em>
  12432. string
  12433. </em>
  12434. </td>
  12435. <td>
  12436. <em>(Optional)</em>
  12437. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  12438. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  12439. for fetching secrets from Vault is optional and will be appended
  12440. if not present in specified path.</p>
  12441. </td>
  12442. </tr>
  12443. <tr>
  12444. <td>
  12445. <code>version</code></br>
  12446. <em>
  12447. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  12448. VaultKVStoreVersion
  12449. </a>
  12450. </em>
  12451. </td>
  12452. <td>
  12453. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  12454. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  12455. </td>
  12456. </tr>
  12457. <tr>
  12458. <td>
  12459. <code>namespace</code></br>
  12460. <em>
  12461. string
  12462. </em>
  12463. </td>
  12464. <td>
  12465. <em>(Optional)</em>
  12466. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  12467. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  12468. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  12469. </td>
  12470. </tr>
  12471. <tr>
  12472. <td>
  12473. <code>caBundle</code></br>
  12474. <em>
  12475. []byte
  12476. </em>
  12477. </td>
  12478. <td>
  12479. <em>(Optional)</em>
  12480. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  12481. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12482. plain HTTP protocol connection. If not set the system root certificates
  12483. are used to validate the TLS connection.</p>
  12484. </td>
  12485. </tr>
  12486. <tr>
  12487. <td>
  12488. <code>tls</code></br>
  12489. <em>
  12490. <a href="#external-secrets.io/v1.VaultClientTLS">
  12491. VaultClientTLS
  12492. </a>
  12493. </em>
  12494. </td>
  12495. <td>
  12496. <em>(Optional)</em>
  12497. <p>The configuration used for client side related TLS communication, when the Vault server
  12498. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  12499. This parameter is ignored for plain HTTP protocol connection.
  12500. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  12501. which is available under the <code>auth.cert</code> section.</p>
  12502. </td>
  12503. </tr>
  12504. <tr>
  12505. <td>
  12506. <code>caProvider</code></br>
  12507. <em>
  12508. <a href="#external-secrets.io/v1.CAProvider">
  12509. CAProvider
  12510. </a>
  12511. </em>
  12512. </td>
  12513. <td>
  12514. <em>(Optional)</em>
  12515. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  12516. </td>
  12517. </tr>
  12518. <tr>
  12519. <td>
  12520. <code>readYourWrites</code></br>
  12521. <em>
  12522. bool
  12523. </em>
  12524. </td>
  12525. <td>
  12526. <em>(Optional)</em>
  12527. <p>ReadYourWrites ensures isolated read-after-write semantics by
  12528. providing discovered cluster replication states in each request.
  12529. More information about eventual consistency in Vault can be found here
  12530. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  12531. </td>
  12532. </tr>
  12533. <tr>
  12534. <td>
  12535. <code>forwardInconsistent</code></br>
  12536. <em>
  12537. bool
  12538. </em>
  12539. </td>
  12540. <td>
  12541. <em>(Optional)</em>
  12542. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  12543. leader instead of simply retrying within a loop. This can increase performance if
  12544. the option is enabled serverside.
  12545. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  12546. </td>
  12547. </tr>
  12548. <tr>
  12549. <td>
  12550. <code>headers</code></br>
  12551. <em>
  12552. map[string]string
  12553. </em>
  12554. </td>
  12555. <td>
  12556. <em>(Optional)</em>
  12557. <p>Headers to be added in Vault request</p>
  12558. </td>
  12559. </tr>
  12560. <tr>
  12561. <td>
  12562. <code>checkAndSet</code></br>
  12563. <em>
  12564. <a href="#external-secrets.io/v1.VaultCheckAndSet">
  12565. VaultCheckAndSet
  12566. </a>
  12567. </em>
  12568. </td>
  12569. <td>
  12570. <em>(Optional)</em>
  12571. <p>CheckAndSet defines the Check-And-Set (CAS) settings for PushSecret operations.
  12572. Only applies to Vault KV v2 stores. When enabled, write operations must include
  12573. the current version of the secret to prevent unintentional overwrites.</p>
  12574. </td>
  12575. </tr>
  12576. </tbody>
  12577. </table>
  12578. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  12579. </h3>
  12580. <p>
  12581. (<em>Appears on:</em>
  12582. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12583. </p>
  12584. <p>
  12585. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  12586. with the username and password stored in a Kubernetes Secret resource.</p>
  12587. </p>
  12588. <table>
  12589. <thead>
  12590. <tr>
  12591. <th>Field</th>
  12592. <th>Description</th>
  12593. </tr>
  12594. </thead>
  12595. <tbody>
  12596. <tr>
  12597. <td>
  12598. <code>path</code></br>
  12599. <em>
  12600. string
  12601. </em>
  12602. </td>
  12603. <td>
  12604. <p>Path where the UserPassword authentication backend is mounted
  12605. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  12606. </td>
  12607. </tr>
  12608. <tr>
  12609. <td>
  12610. <code>username</code></br>
  12611. <em>
  12612. string
  12613. </em>
  12614. </td>
  12615. <td>
  12616. <p>Username is a username used to authenticate using the UserPass Vault
  12617. authentication method</p>
  12618. </td>
  12619. </tr>
  12620. <tr>
  12621. <td>
  12622. <code>secretRef</code></br>
  12623. <em>
  12624. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12625. External Secrets meta/v1.SecretKeySelector
  12626. </a>
  12627. </em>
  12628. </td>
  12629. <td>
  12630. <em>(Optional)</em>
  12631. <p>SecretRef to a key in a Secret resource containing password for the
  12632. user used to authenticate with Vault using the UserPass authentication
  12633. method</p>
  12634. </td>
  12635. </tr>
  12636. </tbody>
  12637. </table>
  12638. <h3 id="external-secrets.io/v1.VolcengineAuth">VolcengineAuth
  12639. </h3>
  12640. <p>
  12641. (<em>Appears on:</em>
  12642. <a href="#external-secrets.io/v1.VolcengineProvider">VolcengineProvider</a>)
  12643. </p>
  12644. <p>
  12645. <p>VolcengineAuth defines the authentication method for the Volcengine provider.
  12646. Only one of the fields should be set.</p>
  12647. </p>
  12648. <table>
  12649. <thead>
  12650. <tr>
  12651. <th>Field</th>
  12652. <th>Description</th>
  12653. </tr>
  12654. </thead>
  12655. <tbody>
  12656. <tr>
  12657. <td>
  12658. <code>secretRef</code></br>
  12659. <em>
  12660. <a href="#external-secrets.io/v1.VolcengineAuthSecretRef">
  12661. VolcengineAuthSecretRef
  12662. </a>
  12663. </em>
  12664. </td>
  12665. <td>
  12666. <em>(Optional)</em>
  12667. <p>SecretRef defines the static credentials to use for authentication.
  12668. If not set, IRSA is used.</p>
  12669. </td>
  12670. </tr>
  12671. </tbody>
  12672. </table>
  12673. <h3 id="external-secrets.io/v1.VolcengineAuthSecretRef">VolcengineAuthSecretRef
  12674. </h3>
  12675. <p>
  12676. (<em>Appears on:</em>
  12677. <a href="#external-secrets.io/v1.VolcengineAuth">VolcengineAuth</a>)
  12678. </p>
  12679. <p>
  12680. <p>VolcengineAuthSecretRef defines the secret reference for static credentials.</p>
  12681. </p>
  12682. <table>
  12683. <thead>
  12684. <tr>
  12685. <th>Field</th>
  12686. <th>Description</th>
  12687. </tr>
  12688. </thead>
  12689. <tbody>
  12690. <tr>
  12691. <td>
  12692. <code>accessKeyID</code></br>
  12693. <em>
  12694. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12695. External Secrets meta/v1.SecretKeySelector
  12696. </a>
  12697. </em>
  12698. </td>
  12699. <td>
  12700. <p>AccessKeyID is the reference to the secret containing the Access Key ID.</p>
  12701. </td>
  12702. </tr>
  12703. <tr>
  12704. <td>
  12705. <code>secretAccessKey</code></br>
  12706. <em>
  12707. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12708. External Secrets meta/v1.SecretKeySelector
  12709. </a>
  12710. </em>
  12711. </td>
  12712. <td>
  12713. <p>SecretAccessKey is the reference to the secret containing the Secret Access Key.</p>
  12714. </td>
  12715. </tr>
  12716. <tr>
  12717. <td>
  12718. <code>token</code></br>
  12719. <em>
  12720. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12721. External Secrets meta/v1.SecretKeySelector
  12722. </a>
  12723. </em>
  12724. </td>
  12725. <td>
  12726. <em>(Optional)</em>
  12727. <p>Token is the reference to the secret containing the STS(Security Token Service) Token.</p>
  12728. </td>
  12729. </tr>
  12730. </tbody>
  12731. </table>
  12732. <h3 id="external-secrets.io/v1.VolcengineProvider">VolcengineProvider
  12733. </h3>
  12734. <p>
  12735. (<em>Appears on:</em>
  12736. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12737. </p>
  12738. <p>
  12739. <p>VolcengineProvider defines the configuration for the Volcengine provider.</p>
  12740. </p>
  12741. <table>
  12742. <thead>
  12743. <tr>
  12744. <th>Field</th>
  12745. <th>Description</th>
  12746. </tr>
  12747. </thead>
  12748. <tbody>
  12749. <tr>
  12750. <td>
  12751. <code>region</code></br>
  12752. <em>
  12753. string
  12754. </em>
  12755. </td>
  12756. <td>
  12757. <p>Region specifies the Volcengine region to connect to.</p>
  12758. </td>
  12759. </tr>
  12760. <tr>
  12761. <td>
  12762. <code>auth</code></br>
  12763. <em>
  12764. <a href="#external-secrets.io/v1.VolcengineAuth">
  12765. VolcengineAuth
  12766. </a>
  12767. </em>
  12768. </td>
  12769. <td>
  12770. <em>(Optional)</em>
  12771. <p>Auth defines the authentication method to use.
  12772. If not specified, the provider will try to use IRSA (IAM Role for Service Account).</p>
  12773. </td>
  12774. </tr>
  12775. </tbody>
  12776. </table>
  12777. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  12778. </h3>
  12779. <p>
  12780. (<em>Appears on:</em>
  12781. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12782. </p>
  12783. <p>
  12784. <p>WebhookCAProvider defines a location to fetch the cert for the webhook provider from.</p>
  12785. </p>
  12786. <table>
  12787. <thead>
  12788. <tr>
  12789. <th>Field</th>
  12790. <th>Description</th>
  12791. </tr>
  12792. </thead>
  12793. <tbody>
  12794. <tr>
  12795. <td>
  12796. <code>type</code></br>
  12797. <em>
  12798. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  12799. WebhookCAProviderType
  12800. </a>
  12801. </em>
  12802. </td>
  12803. <td>
  12804. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  12805. </td>
  12806. </tr>
  12807. <tr>
  12808. <td>
  12809. <code>name</code></br>
  12810. <em>
  12811. string
  12812. </em>
  12813. </td>
  12814. <td>
  12815. <p>The name of the object located at the provider type.</p>
  12816. </td>
  12817. </tr>
  12818. <tr>
  12819. <td>
  12820. <code>key</code></br>
  12821. <em>
  12822. string
  12823. </em>
  12824. </td>
  12825. <td>
  12826. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  12827. </td>
  12828. </tr>
  12829. <tr>
  12830. <td>
  12831. <code>namespace</code></br>
  12832. <em>
  12833. string
  12834. </em>
  12835. </td>
  12836. <td>
  12837. <em>(Optional)</em>
  12838. <p>The namespace the Provider type is in.</p>
  12839. </td>
  12840. </tr>
  12841. </tbody>
  12842. </table>
  12843. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  12844. (<code>string</code> alias)</p></h3>
  12845. <p>
  12846. (<em>Appears on:</em>
  12847. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  12848. </p>
  12849. <p>
  12850. <p>WebhookCAProviderType defines the type of provider for certificate authority in webhook connections.</p>
  12851. </p>
  12852. <table>
  12853. <thead>
  12854. <tr>
  12855. <th>Value</th>
  12856. <th>Description</th>
  12857. </tr>
  12858. </thead>
  12859. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  12860. <td><p>WebhookCAProviderTypeConfigMap indicates that the CA certificate is stored in a ConfigMap resource.</p>
  12861. </td>
  12862. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  12863. <td><p>WebhookCAProviderTypeSecret indicates that the CA certificate is stored in a Secret resource.</p>
  12864. </td>
  12865. </tr></tbody>
  12866. </table>
  12867. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  12868. </h3>
  12869. <p>
  12870. (<em>Appears on:</em>
  12871. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12872. </p>
  12873. <p>
  12874. <p>WebhookProvider configures a store to sync secrets from simple web APIs.</p>
  12875. </p>
  12876. <table>
  12877. <thead>
  12878. <tr>
  12879. <th>Field</th>
  12880. <th>Description</th>
  12881. </tr>
  12882. </thead>
  12883. <tbody>
  12884. <tr>
  12885. <td>
  12886. <code>method</code></br>
  12887. <em>
  12888. string
  12889. </em>
  12890. </td>
  12891. <td>
  12892. <p>Webhook Method</p>
  12893. </td>
  12894. </tr>
  12895. <tr>
  12896. <td>
  12897. <code>url</code></br>
  12898. <em>
  12899. string
  12900. </em>
  12901. </td>
  12902. <td>
  12903. <p>Webhook url to call</p>
  12904. </td>
  12905. </tr>
  12906. <tr>
  12907. <td>
  12908. <code>headers</code></br>
  12909. <em>
  12910. map[string]string
  12911. </em>
  12912. </td>
  12913. <td>
  12914. <em>(Optional)</em>
  12915. <p>Headers</p>
  12916. </td>
  12917. </tr>
  12918. <tr>
  12919. <td>
  12920. <code>auth</code></br>
  12921. <em>
  12922. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  12923. AuthorizationProtocol
  12924. </a>
  12925. </em>
  12926. </td>
  12927. <td>
  12928. <em>(Optional)</em>
  12929. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  12930. </td>
  12931. </tr>
  12932. <tr>
  12933. <td>
  12934. <code>body</code></br>
  12935. <em>
  12936. string
  12937. </em>
  12938. </td>
  12939. <td>
  12940. <em>(Optional)</em>
  12941. <p>Body</p>
  12942. </td>
  12943. </tr>
  12944. <tr>
  12945. <td>
  12946. <code>timeout</code></br>
  12947. <em>
  12948. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  12949. Kubernetes meta/v1.Duration
  12950. </a>
  12951. </em>
  12952. </td>
  12953. <td>
  12954. <em>(Optional)</em>
  12955. <p>Timeout</p>
  12956. </td>
  12957. </tr>
  12958. <tr>
  12959. <td>
  12960. <code>result</code></br>
  12961. <em>
  12962. <a href="#external-secrets.io/v1.WebhookResult">
  12963. WebhookResult
  12964. </a>
  12965. </em>
  12966. </td>
  12967. <td>
  12968. <em>(Optional)</em>
  12969. <p>Result formatting</p>
  12970. </td>
  12971. </tr>
  12972. <tr>
  12973. <td>
  12974. <code>secrets</code></br>
  12975. <em>
  12976. <a href="#external-secrets.io/v1.WebhookSecret">
  12977. []WebhookSecret
  12978. </a>
  12979. </em>
  12980. </td>
  12981. <td>
  12982. <em>(Optional)</em>
  12983. <p>Secrets to fill in templates
  12984. These secrets will be passed to the templating function as key value pairs under the given name</p>
  12985. </td>
  12986. </tr>
  12987. <tr>
  12988. <td>
  12989. <code>caBundle</code></br>
  12990. <em>
  12991. []byte
  12992. </em>
  12993. </td>
  12994. <td>
  12995. <em>(Optional)</em>
  12996. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  12997. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12998. plain HTTP protocol connection. If not set the system root certificates
  12999. are used to validate the TLS connection.</p>
  13000. </td>
  13001. </tr>
  13002. <tr>
  13003. <td>
  13004. <code>caProvider</code></br>
  13005. <em>
  13006. <a href="#external-secrets.io/v1.WebhookCAProvider">
  13007. WebhookCAProvider
  13008. </a>
  13009. </em>
  13010. </td>
  13011. <td>
  13012. <em>(Optional)</em>
  13013. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  13014. </td>
  13015. </tr>
  13016. </tbody>
  13017. </table>
  13018. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  13019. </h3>
  13020. <p>
  13021. (<em>Appears on:</em>
  13022. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  13023. </p>
  13024. <p>
  13025. <p>WebhookResult defines how to process and extract secrets from the webhook response.</p>
  13026. </p>
  13027. <table>
  13028. <thead>
  13029. <tr>
  13030. <th>Field</th>
  13031. <th>Description</th>
  13032. </tr>
  13033. </thead>
  13034. <tbody>
  13035. <tr>
  13036. <td>
  13037. <code>jsonPath</code></br>
  13038. <em>
  13039. string
  13040. </em>
  13041. </td>
  13042. <td>
  13043. <em>(Optional)</em>
  13044. <p>Json path of return value</p>
  13045. </td>
  13046. </tr>
  13047. </tbody>
  13048. </table>
  13049. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  13050. </h3>
  13051. <p>
  13052. (<em>Appears on:</em>
  13053. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  13054. </p>
  13055. <p>
  13056. <p>WebhookSecret defines a secret that will be passed to the webhook request.</p>
  13057. </p>
  13058. <table>
  13059. <thead>
  13060. <tr>
  13061. <th>Field</th>
  13062. <th>Description</th>
  13063. </tr>
  13064. </thead>
  13065. <tbody>
  13066. <tr>
  13067. <td>
  13068. <code>name</code></br>
  13069. <em>
  13070. string
  13071. </em>
  13072. </td>
  13073. <td>
  13074. <p>Name of this secret in templates</p>
  13075. </td>
  13076. </tr>
  13077. <tr>
  13078. <td>
  13079. <code>secretRef</code></br>
  13080. <em>
  13081. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  13082. External Secrets meta/v1.SecretKeySelector
  13083. </a>
  13084. </em>
  13085. </td>
  13086. <td>
  13087. <p>Secret ref to fill in credentials</p>
  13088. </td>
  13089. </tr>
  13090. </tbody>
  13091. </table>
  13092. <h3 id="external-secrets.io/v1.YandexAuth">YandexAuth
  13093. </h3>
  13094. <p>
  13095. (<em>Appears on:</em>
  13096. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  13097. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  13098. </p>
  13099. <p>
  13100. <p>YandexAuth defines the authentication method for the Yandex provider.</p>
  13101. </p>
  13102. <table>
  13103. <thead>
  13104. <tr>
  13105. <th>Field</th>
  13106. <th>Description</th>
  13107. </tr>
  13108. </thead>
  13109. <tbody>
  13110. <tr>
  13111. <td>
  13112. <code>authorizedKeySecretRef</code></br>
  13113. <em>
  13114. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  13115. External Secrets meta/v1.SecretKeySelector
  13116. </a>
  13117. </em>
  13118. </td>
  13119. <td>
  13120. <em>(Optional)</em>
  13121. <p>The authorized key used for authentication</p>
  13122. </td>
  13123. </tr>
  13124. </tbody>
  13125. </table>
  13126. <h3 id="external-secrets.io/v1.YandexCAProvider">YandexCAProvider
  13127. </h3>
  13128. <p>
  13129. (<em>Appears on:</em>
  13130. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  13131. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  13132. </p>
  13133. <p>
  13134. <p>YandexCAProvider defines the configuration for Yandex custom certificate authority.</p>
  13135. </p>
  13136. <table>
  13137. <thead>
  13138. <tr>
  13139. <th>Field</th>
  13140. <th>Description</th>
  13141. </tr>
  13142. </thead>
  13143. <tbody>
  13144. <tr>
  13145. <td>
  13146. <code>certSecretRef</code></br>
  13147. <em>
  13148. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  13149. External Secrets meta/v1.SecretKeySelector
  13150. </a>
  13151. </em>
  13152. </td>
  13153. <td>
  13154. </td>
  13155. </tr>
  13156. </tbody>
  13157. </table>
  13158. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  13159. </h3>
  13160. <p>
  13161. (<em>Appears on:</em>
  13162. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  13163. </p>
  13164. <p>
  13165. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  13166. </p>
  13167. <table>
  13168. <thead>
  13169. <tr>
  13170. <th>Field</th>
  13171. <th>Description</th>
  13172. </tr>
  13173. </thead>
  13174. <tbody>
  13175. <tr>
  13176. <td>
  13177. <code>apiEndpoint</code></br>
  13178. <em>
  13179. string
  13180. </em>
  13181. </td>
  13182. <td>
  13183. <em>(Optional)</em>
  13184. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  13185. </td>
  13186. </tr>
  13187. <tr>
  13188. <td>
  13189. <code>auth</code></br>
  13190. <em>
  13191. <a href="#external-secrets.io/v1.YandexAuth">
  13192. YandexAuth
  13193. </a>
  13194. </em>
  13195. </td>
  13196. <td>
  13197. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  13198. </td>
  13199. </tr>
  13200. <tr>
  13201. <td>
  13202. <code>caProvider</code></br>
  13203. <em>
  13204. <a href="#external-secrets.io/v1.YandexCAProvider">
  13205. YandexCAProvider
  13206. </a>
  13207. </em>
  13208. </td>
  13209. <td>
  13210. <em>(Optional)</em>
  13211. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  13212. </td>
  13213. </tr>
  13214. <tr>
  13215. <td>
  13216. <code>fetching</code></br>
  13217. <em>
  13218. <a href="#external-secrets.io/v1.FetchingPolicy">
  13219. FetchingPolicy
  13220. </a>
  13221. </em>
  13222. </td>
  13223. <td>
  13224. <em>(Optional)</em>
  13225. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as certificate ID or certificate name</p>
  13226. </td>
  13227. </tr>
  13228. </tbody>
  13229. </table>
  13230. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  13231. </h3>
  13232. <p>
  13233. (<em>Appears on:</em>
  13234. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  13235. </p>
  13236. <p>
  13237. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  13238. </p>
  13239. <table>
  13240. <thead>
  13241. <tr>
  13242. <th>Field</th>
  13243. <th>Description</th>
  13244. </tr>
  13245. </thead>
  13246. <tbody>
  13247. <tr>
  13248. <td>
  13249. <code>apiEndpoint</code></br>
  13250. <em>
  13251. string
  13252. </em>
  13253. </td>
  13254. <td>
  13255. <em>(Optional)</em>
  13256. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  13257. </td>
  13258. </tr>
  13259. <tr>
  13260. <td>
  13261. <code>auth</code></br>
  13262. <em>
  13263. <a href="#external-secrets.io/v1.YandexAuth">
  13264. YandexAuth
  13265. </a>
  13266. </em>
  13267. </td>
  13268. <td>
  13269. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  13270. </td>
  13271. </tr>
  13272. <tr>
  13273. <td>
  13274. <code>caProvider</code></br>
  13275. <em>
  13276. <a href="#external-secrets.io/v1.YandexCAProvider">
  13277. YandexCAProvider
  13278. </a>
  13279. </em>
  13280. </td>
  13281. <td>
  13282. <em>(Optional)</em>
  13283. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  13284. </td>
  13285. </tr>
  13286. <tr>
  13287. <td>
  13288. <code>fetching</code></br>
  13289. <em>
  13290. <a href="#external-secrets.io/v1.FetchingPolicy">
  13291. FetchingPolicy
  13292. </a>
  13293. </em>
  13294. </td>
  13295. <td>
  13296. <em>(Optional)</em>
  13297. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID or secret name</p>
  13298. </td>
  13299. </tr>
  13300. </tbody>
  13301. </table>
  13302. <hr/>
  13303. <p><em>
  13304. Generated with <code>gen-crd-api-reference-docs</code>.
  13305. </em></p>
  13306. </article>
  13307. </div>
  13308. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  13309. </div>
  13310. </main>
  13311. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  13312. <footer class="md-footer">
  13313. <div class="md-footer-meta md-typeset">
  13314. <div class="md-footer-meta__inner md-grid">
  13315. <div class="md-copyright">
  13316. <div class="md-copyright__highlight">
  13317. &copy; 2025 The external-secrets Authors.<br/>
  13318. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  13319. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  13320. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  13321. </div>
  13322. Made with
  13323. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  13324. Material for MkDocs
  13325. </a>
  13326. </div>
  13327. </div>
  13328. </div>
  13329. </footer>
  13330. </div>
  13331. <div class="md-dialog" data-md-component="dialog">
  13332. <div class="md-dialog__inner md-typeset"></div>
  13333. </div>
  13334. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.973d3a69.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  13335. <script src="../../assets/javascripts/bundle.f55a23d4.min.js"></script>
  13336. </body>
  13337. </html>